6CM8
/
STM32-103C8_Prueba_Barrido
display 7 seg 4 digitos
PinNames.h@0:8006a686f427, 2019-10-25 (annotated)
- Committer:
- Antulius
- Date:
- Fri Oct 25 21:18:37 2019 +0000
- Revision:
- 0:8006a686f427
display 7 seg 4 digitos
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
Antulius | 0:8006a686f427 | 1 | /* mbed Microcontroller Library |
Antulius | 0:8006a686f427 | 2 | ******************************************************************************* |
Antulius | 0:8006a686f427 | 3 | * Copyright (c) 2014, STMicroelectronics |
Antulius | 0:8006a686f427 | 4 | * All rights reserved. |
Antulius | 0:8006a686f427 | 5 | * |
Antulius | 0:8006a686f427 | 6 | * Redistribution and use in source and binary forms, with or without |
Antulius | 0:8006a686f427 | 7 | * modification, are permitted provided that the following conditions are met: |
Antulius | 0:8006a686f427 | 8 | * |
Antulius | 0:8006a686f427 | 9 | * 1. Redistributions of source code must retain the above copyright notice, |
Antulius | 0:8006a686f427 | 10 | * this list of conditions and the following disclaimer. |
Antulius | 0:8006a686f427 | 11 | * 2. Redistributions in binary form must reproduce the above copyright notice, |
Antulius | 0:8006a686f427 | 12 | * this list of conditions and the following disclaimer in the documentation |
Antulius | 0:8006a686f427 | 13 | * and/or other materials provided with the distribution. |
Antulius | 0:8006a686f427 | 14 | * 3. Neither the name of STMicroelectronics nor the names of its contributors |
Antulius | 0:8006a686f427 | 15 | * may be used to endorse or promote products derived from this software |
Antulius | 0:8006a686f427 | 16 | * without specific prior written permission. |
Antulius | 0:8006a686f427 | 17 | * |
Antulius | 0:8006a686f427 | 18 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" |
Antulius | 0:8006a686f427 | 19 | * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
Antulius | 0:8006a686f427 | 20 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE |
Antulius | 0:8006a686f427 | 21 | * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE |
Antulius | 0:8006a686f427 | 22 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
Antulius | 0:8006a686f427 | 23 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR |
Antulius | 0:8006a686f427 | 24 | * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER |
Antulius | 0:8006a686f427 | 25 | * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, |
Antulius | 0:8006a686f427 | 26 | * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
Antulius | 0:8006a686f427 | 27 | * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
Antulius | 0:8006a686f427 | 28 | ******************************************************************************* |
Antulius | 0:8006a686f427 | 29 | |
Antulius | 0:8006a686f427 | 30 | */ |
Antulius | 0:8006a686f427 | 31 | #ifndef MBED_PINNAMES_H |
Antulius | 0:8006a686f427 | 32 | #define MBED_PINNAMES_H |
Antulius | 0:8006a686f427 | 33 | |
Antulius | 0:8006a686f427 | 34 | #include "cmsis.h" |
Antulius | 0:8006a686f427 | 35 | #include "PinNamesTypes.h" |
Antulius | 0:8006a686f427 | 36 | |
Antulius | 0:8006a686f427 | 37 | #ifdef __cplusplus |
Antulius | 0:8006a686f427 | 38 | extern "C" { |
Antulius | 0:8006a686f427 | 39 | #endif |
Antulius | 0:8006a686f427 | 40 | |
Antulius | 0:8006a686f427 | 41 | typedef enum { |
Antulius | 0:8006a686f427 | 42 | // Not connected |
Antulius | 0:8006a686f427 | 43 | NC = (int)0xFFFFFFFF, |
Antulius | 0:8006a686f427 | 44 | |
Antulius | 0:8006a686f427 | 45 | // Ports |
Antulius | 0:8006a686f427 | 46 | PA_0 = 0x00, |
Antulius | 0:8006a686f427 | 47 | PA_1 = 0x01, |
Antulius | 0:8006a686f427 | 48 | PA_2 = 0x02, |
Antulius | 0:8006a686f427 | 49 | PA_3 = 0x03, |
Antulius | 0:8006a686f427 | 50 | PA_4 = 0x04, |
Antulius | 0:8006a686f427 | 51 | PA_5 = 0x05, |
Antulius | 0:8006a686f427 | 52 | PA_6 = 0x06, |
Antulius | 0:8006a686f427 | 53 | PA_7 = 0x07, |
Antulius | 0:8006a686f427 | 54 | PA_8 = 0x08, |
Antulius | 0:8006a686f427 | 55 | PA_9 = 0x09, |
Antulius | 0:8006a686f427 | 56 | PA_10 = 0x0A, |
Antulius | 0:8006a686f427 | 57 | PA_11 = 0x0B, |
Antulius | 0:8006a686f427 | 58 | PA_12 = 0x0C, |
Antulius | 0:8006a686f427 | 59 | PA_13 = NC, |
Antulius | 0:8006a686f427 | 60 | PA_14 = NC, |
Antulius | 0:8006a686f427 | 61 | PA_15 = 0x0F, |
Antulius | 0:8006a686f427 | 62 | |
Antulius | 0:8006a686f427 | 63 | PB_0 = 0x10, |
Antulius | 0:8006a686f427 | 64 | PB_1 = 0x11, |
Antulius | 0:8006a686f427 | 65 | PB_2 = NC, |
Antulius | 0:8006a686f427 | 66 | PB_3 = 0x13, |
Antulius | 0:8006a686f427 | 67 | PB_4 = 0x14, |
Antulius | 0:8006a686f427 | 68 | PB_5 = 0x15, |
Antulius | 0:8006a686f427 | 69 | PB_6 = 0x16, |
Antulius | 0:8006a686f427 | 70 | PB_7 = 0x17, |
Antulius | 0:8006a686f427 | 71 | PB_8 = 0x18, |
Antulius | 0:8006a686f427 | 72 | PB_9 = 0x19, |
Antulius | 0:8006a686f427 | 73 | PB_10 = 0x1A, |
Antulius | 0:8006a686f427 | 74 | PB_11 = 0x1B, |
Antulius | 0:8006a686f427 | 75 | PB_12 = 0x1C, |
Antulius | 0:8006a686f427 | 76 | PB_13 = 0x1D, |
Antulius | 0:8006a686f427 | 77 | PB_14 = 0x1E, |
Antulius | 0:8006a686f427 | 78 | PB_15 = 0x1F, |
Antulius | 0:8006a686f427 | 79 | |
Antulius | 0:8006a686f427 | 80 | PC_0 = NC, |
Antulius | 0:8006a686f427 | 81 | PC_1 = NC, |
Antulius | 0:8006a686f427 | 82 | PC_2 = NC, |
Antulius | 0:8006a686f427 | 83 | PC_3 = NC, |
Antulius | 0:8006a686f427 | 84 | PC_4 = NC, |
Antulius | 0:8006a686f427 | 85 | PC_5 = NC, |
Antulius | 0:8006a686f427 | 86 | PC_6 = NC, |
Antulius | 0:8006a686f427 | 87 | PC_7 = NC, |
Antulius | 0:8006a686f427 | 88 | PC_8 = NC, |
Antulius | 0:8006a686f427 | 89 | PC_9 = NC, |
Antulius | 0:8006a686f427 | 90 | PC_10 = NC, |
Antulius | 0:8006a686f427 | 91 | PC_11 = NC, |
Antulius | 0:8006a686f427 | 92 | PC_12 = NC, |
Antulius | 0:8006a686f427 | 93 | PC_13 = 0x2D, |
Antulius | 0:8006a686f427 | 94 | PC_14 = 0x2E, |
Antulius | 0:8006a686f427 | 95 | PC_15 = 0x2F, |
Antulius | 0:8006a686f427 | 96 | |
Antulius | 0:8006a686f427 | 97 | PD_2 = NC, |
Antulius | 0:8006a686f427 | 98 | |
Antulius | 0:8006a686f427 | 99 | // ADC internal channels |
Antulius | 0:8006a686f427 | 100 | ADC_TEMP = 0xF0, |
Antulius | 0:8006a686f427 | 101 | ADC_VREF = 0xF1, |
Antulius | 0:8006a686f427 | 102 | |
Antulius | 0:8006a686f427 | 103 | // Arduino connector namings |
Antulius | 0:8006a686f427 | 104 | A0 = PA_0, |
Antulius | 0:8006a686f427 | 105 | A1 = PA_1, |
Antulius | 0:8006a686f427 | 106 | A2 = PA_4, |
Antulius | 0:8006a686f427 | 107 | A3 = PB_0, |
Antulius | 0:8006a686f427 | 108 | A4 = NC, |
Antulius | 0:8006a686f427 | 109 | A5 = NC, |
Antulius | 0:8006a686f427 | 110 | D0 = PA_3, |
Antulius | 0:8006a686f427 | 111 | D1 = PA_2, |
Antulius | 0:8006a686f427 | 112 | D2 = PA_10, |
Antulius | 0:8006a686f427 | 113 | D3 = PB_3, |
Antulius | 0:8006a686f427 | 114 | D4 = PB_5, |
Antulius | 0:8006a686f427 | 115 | D5 = PB_4, |
Antulius | 0:8006a686f427 | 116 | D6 = PB_10, |
Antulius | 0:8006a686f427 | 117 | D7 = PA_8, |
Antulius | 0:8006a686f427 | 118 | D8 = PA_9, |
Antulius | 0:8006a686f427 | 119 | D9 = NC, |
Antulius | 0:8006a686f427 | 120 | D10 = PB_6, |
Antulius | 0:8006a686f427 | 121 | D11 = PA_7, |
Antulius | 0:8006a686f427 | 122 | D12 = PA_6, |
Antulius | 0:8006a686f427 | 123 | D13 = PA_5, |
Antulius | 0:8006a686f427 | 124 | D14 = PB_9, |
Antulius | 0:8006a686f427 | 125 | D15 = PB_8, |
Antulius | 0:8006a686f427 | 126 | |
Antulius | 0:8006a686f427 | 127 | // Generic signals namings |
Antulius | 0:8006a686f427 | 128 | Red_Led = NC, |
Antulius | 0:8006a686f427 | 129 | Green_Led = PC_13, |
Antulius | 0:8006a686f427 | 130 | Blue_Led = NC, |
Antulius | 0:8006a686f427 | 131 | LED1 = PC_13, |
Antulius | 0:8006a686f427 | 132 | LED2 = NC, |
Antulius | 0:8006a686f427 | 133 | LED3 = NC, |
Antulius | 0:8006a686f427 | 134 | LED4 = NC, |
Antulius | 0:8006a686f427 | 135 | USER_BUTTON = NC, |
Antulius | 0:8006a686f427 | 136 | SERIAL_TX = PA_2, |
Antulius | 0:8006a686f427 | 137 | SERIAL_RX = PA_3, |
Antulius | 0:8006a686f427 | 138 | USBTX = PA_12, |
Antulius | 0:8006a686f427 | 139 | USBRX = PA_11, |
Antulius | 0:8006a686f427 | 140 | CANRX = PB_8, |
Antulius | 0:8006a686f427 | 141 | CANTX = PB_9, |
Antulius | 0:8006a686f427 | 142 | I2C_SCL = PB_6, |
Antulius | 0:8006a686f427 | 143 | I2C_SDA = PB_7, |
Antulius | 0:8006a686f427 | 144 | SPI_MOSI = PA_7, |
Antulius | 0:8006a686f427 | 145 | SPI_MISO = PA_6, |
Antulius | 0:8006a686f427 | 146 | SPI_SCK = PA_5, |
Antulius | 0:8006a686f427 | 147 | SPI_CS = PA_4, |
Antulius | 0:8006a686f427 | 148 | TRACE_SWO = PB_3, |
Antulius | 0:8006a686f427 | 149 | SWO = PB_3 |
Antulius | 0:8006a686f427 | 150 | } PinName; |
Antulius | 0:8006a686f427 | 151 | |
Antulius | 0:8006a686f427 | 152 | #ifdef __cplusplus |
Antulius | 0:8006a686f427 | 153 | } |
Antulius | 0:8006a686f427 | 154 | #endif |
Antulius | 0:8006a686f427 | 155 | |
Antulius | 0:8006a686f427 | 156 | #endif |