Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependents: mbed_blinky-bmd-200 bmd-200_accel_demo firstRig
Fork of mbed-src by
targets/hal/TARGET_STM/TARGET_STM32F3/TARGET_NUCLEO_F302R8/PinNames.h@511:4f5903e025e6, 2015-04-09 (annotated)
- Committer:
- mbed_official
- Date:
- Thu Apr 09 06:45:08 2015 +0100
- Revision:
- 511:4f5903e025e6
- Parent:
- targets/hal/TARGET_STM/TARGET_NUCLEO_F302R8/PinNames.h@330:c80ac197fa6a
- Child:
- 548:1af5f1c39e80
Synchronized with git revision 643cd23443352254ef51f4be0974b6e526142078
Full URL: https://github.com/mbedmicro/mbed/commit/643cd23443352254ef51f4be0974b6e526142078/
STM32F3xx - hal reorganization
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
mbed_official | 125:23cc3068a9e4 | 1 | /* mbed Microcontroller Library |
mbed_official | 125:23cc3068a9e4 | 2 | ******************************************************************************* |
mbed_official | 125:23cc3068a9e4 | 3 | * Copyright (c) 2014, STMicroelectronics |
mbed_official | 125:23cc3068a9e4 | 4 | * All rights reserved. |
mbed_official | 125:23cc3068a9e4 | 5 | * |
mbed_official | 125:23cc3068a9e4 | 6 | * Redistribution and use in source and binary forms, with or without |
mbed_official | 125:23cc3068a9e4 | 7 | * modification, are permitted provided that the following conditions are met: |
mbed_official | 125:23cc3068a9e4 | 8 | * |
mbed_official | 125:23cc3068a9e4 | 9 | * 1. Redistributions of source code must retain the above copyright notice, |
mbed_official | 125:23cc3068a9e4 | 10 | * this list of conditions and the following disclaimer. |
mbed_official | 125:23cc3068a9e4 | 11 | * 2. Redistributions in binary form must reproduce the above copyright notice, |
mbed_official | 125:23cc3068a9e4 | 12 | * this list of conditions and the following disclaimer in the documentation |
mbed_official | 125:23cc3068a9e4 | 13 | * and/or other materials provided with the distribution. |
mbed_official | 125:23cc3068a9e4 | 14 | * 3. Neither the name of STMicroelectronics nor the names of its contributors |
mbed_official | 125:23cc3068a9e4 | 15 | * may be used to endorse or promote products derived from this software |
mbed_official | 125:23cc3068a9e4 | 16 | * without specific prior written permission. |
mbed_official | 125:23cc3068a9e4 | 17 | * |
mbed_official | 125:23cc3068a9e4 | 18 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" |
mbed_official | 125:23cc3068a9e4 | 19 | * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
mbed_official | 125:23cc3068a9e4 | 20 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE |
mbed_official | 125:23cc3068a9e4 | 21 | * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE |
mbed_official | 125:23cc3068a9e4 | 22 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
mbed_official | 125:23cc3068a9e4 | 23 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR |
mbed_official | 125:23cc3068a9e4 | 24 | * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER |
mbed_official | 125:23cc3068a9e4 | 25 | * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, |
mbed_official | 125:23cc3068a9e4 | 26 | * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
mbed_official | 125:23cc3068a9e4 | 27 | * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
mbed_official | 125:23cc3068a9e4 | 28 | ******************************************************************************* |
mbed_official | 125:23cc3068a9e4 | 29 | */ |
mbed_official | 125:23cc3068a9e4 | 30 | #ifndef MBED_PINNAMES_H |
mbed_official | 125:23cc3068a9e4 | 31 | #define MBED_PINNAMES_H |
mbed_official | 125:23cc3068a9e4 | 32 | |
mbed_official | 125:23cc3068a9e4 | 33 | #include "cmsis.h" |
mbed_official | 125:23cc3068a9e4 | 34 | |
mbed_official | 125:23cc3068a9e4 | 35 | #ifdef __cplusplus |
mbed_official | 125:23cc3068a9e4 | 36 | extern "C" { |
mbed_official | 125:23cc3068a9e4 | 37 | #endif |
mbed_official | 125:23cc3068a9e4 | 38 | |
mbed_official | 330:c80ac197fa6a | 39 | // See stm32f3xx_hal_gpio.h and stm32f3xx_hal_gpio_ex.h for values of MODE, PUPD and AFNUM |
mbed_official | 330:c80ac197fa6a | 40 | #define STM_PIN_DATA(MODE, PUPD, AFNUM) ((int)(((AFNUM) << 7) | ((PUPD) << 4) | ((MODE) << 0))) |
mbed_official | 330:c80ac197fa6a | 41 | #define STM_PIN_MODE(X) (((X) >> 0) & 0x0F) |
mbed_official | 330:c80ac197fa6a | 42 | #define STM_PIN_PUPD(X) (((X) >> 4) & 0x07) |
mbed_official | 330:c80ac197fa6a | 43 | #define STM_PIN_AFNUM(X) (((X) >> 7) & 0x0F) |
mbed_official | 330:c80ac197fa6a | 44 | #define STM_MODE_INPUT (0) |
mbed_official | 330:c80ac197fa6a | 45 | #define STM_MODE_OUTPUT_PP (1) |
mbed_official | 330:c80ac197fa6a | 46 | #define STM_MODE_OUTPUT_OD (2) |
mbed_official | 330:c80ac197fa6a | 47 | #define STM_MODE_AF_PP (3) |
mbed_official | 330:c80ac197fa6a | 48 | #define STM_MODE_AF_OD (4) |
mbed_official | 330:c80ac197fa6a | 49 | #define STM_MODE_ANALOG (5) |
mbed_official | 330:c80ac197fa6a | 50 | #define STM_MODE_IT_RISING (6) |
mbed_official | 330:c80ac197fa6a | 51 | #define STM_MODE_IT_FALLING (7) |
mbed_official | 330:c80ac197fa6a | 52 | #define STM_MODE_IT_RISING_FALLING (8) |
mbed_official | 330:c80ac197fa6a | 53 | #define STM_MODE_EVT_RISING (9) |
mbed_official | 330:c80ac197fa6a | 54 | #define STM_MODE_EVT_FALLING (10) |
mbed_official | 330:c80ac197fa6a | 55 | #define STM_MODE_EVT_RISING_FALLING (11) |
mbed_official | 330:c80ac197fa6a | 56 | #define STM_MODE_IT_EVT_RESET (12) |
mbed_official | 125:23cc3068a9e4 | 57 | |
mbed_official | 125:23cc3068a9e4 | 58 | // High nibble = port number (0=A, 1=B, 2=C, 3=D, 4=E, 5=F, 6=G, 7=H) |
mbed_official | 125:23cc3068a9e4 | 59 | // Low nibble = pin number |
mbed_official | 125:23cc3068a9e4 | 60 | #define STM_PORT(X) (((uint32_t)(X) >> 4) & 0xF) |
mbed_official | 125:23cc3068a9e4 | 61 | #define STM_PIN(X) ((uint32_t)(X) & 0xF) |
mbed_official | 135:067cc8ba23da | 62 | |
mbed_official | 125:23cc3068a9e4 | 63 | typedef enum { |
mbed_official | 125:23cc3068a9e4 | 64 | PIN_INPUT, |
mbed_official | 125:23cc3068a9e4 | 65 | PIN_OUTPUT |
mbed_official | 125:23cc3068a9e4 | 66 | } PinDirection; |
mbed_official | 125:23cc3068a9e4 | 67 | |
mbed_official | 125:23cc3068a9e4 | 68 | typedef enum { |
mbed_official | 135:067cc8ba23da | 69 | PA_0 = 0x00, |
mbed_official | 135:067cc8ba23da | 70 | PA_1 = 0x01, |
mbed_official | 135:067cc8ba23da | 71 | PA_2 = 0x02, |
mbed_official | 135:067cc8ba23da | 72 | PA_3 = 0x03, |
mbed_official | 135:067cc8ba23da | 73 | PA_4 = 0x04, |
mbed_official | 135:067cc8ba23da | 74 | PA_5 = 0x05, |
mbed_official | 135:067cc8ba23da | 75 | PA_6 = 0x06, |
mbed_official | 135:067cc8ba23da | 76 | PA_7 = 0x07, |
mbed_official | 135:067cc8ba23da | 77 | PA_8 = 0x08, |
mbed_official | 135:067cc8ba23da | 78 | PA_9 = 0x09, |
mbed_official | 135:067cc8ba23da | 79 | PA_10 = 0x0A, |
mbed_official | 135:067cc8ba23da | 80 | PA_11 = 0x0B, |
mbed_official | 135:067cc8ba23da | 81 | PA_12 = 0x0C, |
mbed_official | 135:067cc8ba23da | 82 | PA_13 = 0x0D, |
mbed_official | 135:067cc8ba23da | 83 | PA_14 = 0x0E, |
mbed_official | 135:067cc8ba23da | 84 | PA_15 = 0x0F, |
mbed_official | 125:23cc3068a9e4 | 85 | |
mbed_official | 135:067cc8ba23da | 86 | PB_0 = 0x10, |
mbed_official | 135:067cc8ba23da | 87 | PB_1 = 0x11, |
mbed_official | 135:067cc8ba23da | 88 | PB_2 = 0x12, |
mbed_official | 135:067cc8ba23da | 89 | PB_3 = 0x13, |
mbed_official | 135:067cc8ba23da | 90 | PB_4 = 0x14, |
mbed_official | 135:067cc8ba23da | 91 | PB_5 = 0x15, |
mbed_official | 135:067cc8ba23da | 92 | PB_6 = 0x16, |
mbed_official | 135:067cc8ba23da | 93 | PB_7 = 0x17, |
mbed_official | 135:067cc8ba23da | 94 | PB_8 = 0x18, |
mbed_official | 135:067cc8ba23da | 95 | PB_9 = 0x19, |
mbed_official | 135:067cc8ba23da | 96 | PB_10 = 0x1A, |
mbed_official | 135:067cc8ba23da | 97 | PB_11 = 0x1B, |
mbed_official | 135:067cc8ba23da | 98 | PB_12 = 0x1C, |
mbed_official | 135:067cc8ba23da | 99 | PB_13 = 0x1D, |
mbed_official | 135:067cc8ba23da | 100 | PB_14 = 0x1E, |
mbed_official | 135:067cc8ba23da | 101 | PB_15 = 0x1F, |
mbed_official | 125:23cc3068a9e4 | 102 | |
mbed_official | 135:067cc8ba23da | 103 | PC_0 = 0x20, |
mbed_official | 135:067cc8ba23da | 104 | PC_1 = 0x21, |
mbed_official | 135:067cc8ba23da | 105 | PC_2 = 0x22, |
mbed_official | 135:067cc8ba23da | 106 | PC_3 = 0x23, |
mbed_official | 135:067cc8ba23da | 107 | PC_4 = 0x24, |
mbed_official | 135:067cc8ba23da | 108 | PC_5 = 0x25, |
mbed_official | 135:067cc8ba23da | 109 | PC_6 = 0x26, |
mbed_official | 135:067cc8ba23da | 110 | PC_7 = 0x27, |
mbed_official | 135:067cc8ba23da | 111 | PC_8 = 0x28, |
mbed_official | 135:067cc8ba23da | 112 | PC_9 = 0x29, |
mbed_official | 135:067cc8ba23da | 113 | PC_10 = 0x2A, |
mbed_official | 135:067cc8ba23da | 114 | PC_11 = 0x2B, |
mbed_official | 135:067cc8ba23da | 115 | PC_12 = 0x2C, |
mbed_official | 135:067cc8ba23da | 116 | PC_13 = 0x2D, |
mbed_official | 135:067cc8ba23da | 117 | PC_14 = 0x2E, |
mbed_official | 135:067cc8ba23da | 118 | PC_15 = 0x2F, |
mbed_official | 125:23cc3068a9e4 | 119 | |
mbed_official | 135:067cc8ba23da | 120 | PD_2 = 0x32, |
mbed_official | 125:23cc3068a9e4 | 121 | |
mbed_official | 135:067cc8ba23da | 122 | PF_0 = 0x50, |
mbed_official | 135:067cc8ba23da | 123 | PF_1 = 0x51, |
mbed_official | 125:23cc3068a9e4 | 124 | |
mbed_official | 135:067cc8ba23da | 125 | // Arduino connector namings |
mbed_official | 135:067cc8ba23da | 126 | A0 = PA_0, |
mbed_official | 135:067cc8ba23da | 127 | A1 = PA_1, |
mbed_official | 135:067cc8ba23da | 128 | A2 = PA_4, |
mbed_official | 135:067cc8ba23da | 129 | A3 = PB_0, |
mbed_official | 135:067cc8ba23da | 130 | A4 = PC_1, |
mbed_official | 135:067cc8ba23da | 131 | A5 = PC_0, |
mbed_official | 135:067cc8ba23da | 132 | D0 = PA_3, |
mbed_official | 135:067cc8ba23da | 133 | D1 = PA_2, |
mbed_official | 135:067cc8ba23da | 134 | D2 = PA_10, |
mbed_official | 135:067cc8ba23da | 135 | D3 = PB_3, |
mbed_official | 135:067cc8ba23da | 136 | D4 = PB_5, |
mbed_official | 135:067cc8ba23da | 137 | D5 = PB_4, |
mbed_official | 135:067cc8ba23da | 138 | D6 = PB_10, |
mbed_official | 135:067cc8ba23da | 139 | D7 = PA_8, |
mbed_official | 135:067cc8ba23da | 140 | D8 = PA_9, |
mbed_official | 135:067cc8ba23da | 141 | D9 = PC_7, |
mbed_official | 135:067cc8ba23da | 142 | D10 = PB_6, |
mbed_official | 145:cfacfb0a9e19 | 143 | D11 = PB_15, |
mbed_official | 145:cfacfb0a9e19 | 144 | D12 = PB_14, |
mbed_official | 145:cfacfb0a9e19 | 145 | D13 = PB_13, |
mbed_official | 135:067cc8ba23da | 146 | D14 = PB_9, |
mbed_official | 135:067cc8ba23da | 147 | D15 = PB_8, |
mbed_official | 125:23cc3068a9e4 | 148 | |
mbed_official | 135:067cc8ba23da | 149 | // Generic signals namings |
mbed_official | 189:4502ef52f909 | 150 | LED1 = PB_13, |
mbed_official | 189:4502ef52f909 | 151 | LED2 = PB_13, |
mbed_official | 189:4502ef52f909 | 152 | LED3 = PB_13, |
mbed_official | 189:4502ef52f909 | 153 | LED4 = PB_13, |
mbed_official | 135:067cc8ba23da | 154 | USER_BUTTON = PC_13, |
mbed_official | 135:067cc8ba23da | 155 | SERIAL_TX = PA_2, |
mbed_official | 135:067cc8ba23da | 156 | SERIAL_RX = PA_3, |
mbed_official | 135:067cc8ba23da | 157 | USBTX = PA_2, |
mbed_official | 135:067cc8ba23da | 158 | USBRX = PA_3, |
mbed_official | 135:067cc8ba23da | 159 | I2C_SCL = PB_8, |
mbed_official | 135:067cc8ba23da | 160 | I2C_SDA = PB_9, |
mbed_official | 135:067cc8ba23da | 161 | SPI_MOSI = PB_15, |
mbed_official | 135:067cc8ba23da | 162 | SPI_MISO = PB_14, |
mbed_official | 135:067cc8ba23da | 163 | SPI_SCK = PB_13, |
mbed_official | 135:067cc8ba23da | 164 | SPI_CS = PB_6, |
mbed_official | 139:e3413eddde57 | 165 | PWM_OUT = PB_4, |
mbed_official | 135:067cc8ba23da | 166 | |
mbed_official | 135:067cc8ba23da | 167 | // Not connected |
mbed_official | 135:067cc8ba23da | 168 | NC = (int)0xFFFFFFFF |
mbed_official | 125:23cc3068a9e4 | 169 | } PinName; |
mbed_official | 125:23cc3068a9e4 | 170 | |
mbed_official | 125:23cc3068a9e4 | 171 | typedef enum { |
mbed_official | 125:23cc3068a9e4 | 172 | PullNone = 0, |
mbed_official | 125:23cc3068a9e4 | 173 | PullUp = 1, |
mbed_official | 125:23cc3068a9e4 | 174 | PullDown = 2, |
mbed_official | 125:23cc3068a9e4 | 175 | OpenDrain = 3, |
mbed_official | 125:23cc3068a9e4 | 176 | PullDefault = PullNone |
mbed_official | 125:23cc3068a9e4 | 177 | } PinMode; |
mbed_official | 125:23cc3068a9e4 | 178 | |
mbed_official | 125:23cc3068a9e4 | 179 | #ifdef __cplusplus |
mbed_official | 125:23cc3068a9e4 | 180 | } |
mbed_official | 125:23cc3068a9e4 | 181 | #endif |
mbed_official | 125:23cc3068a9e4 | 182 | |
mbed_official | 125:23cc3068a9e4 | 183 | #endif |