Initial commit

Dependencies:   FastPWM

Committer:
lypinator
Date:
Wed Sep 16 01:11:49 2020 +0000
Revision:
0:bb348c97df44
Added PWM

Who changed what in which revision?

UserRevisionLine numberNew contents of line
lypinator 0:bb348c97df44 1 /* mbed Microcontroller Library
lypinator 0:bb348c97df44 2 * Copyright (c) 2016 ARM Limited
lypinator 0:bb348c97df44 3 *
lypinator 0:bb348c97df44 4 * Licensed under the Apache License, Version 2.0 (the "License");
lypinator 0:bb348c97df44 5 * you may not use this file except in compliance with the License.
lypinator 0:bb348c97df44 6 * You may obtain a copy of the License at
lypinator 0:bb348c97df44 7 *
lypinator 0:bb348c97df44 8 * http://www.apache.org/licenses/LICENSE-2.0
lypinator 0:bb348c97df44 9 *
lypinator 0:bb348c97df44 10 * Unless required by applicable law or agreed to in writing, software
lypinator 0:bb348c97df44 11 * distributed under the License is distributed on an "AS IS" BASIS,
lypinator 0:bb348c97df44 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
lypinator 0:bb348c97df44 13 * See the License for the specific language governing permissions and
lypinator 0:bb348c97df44 14 * limitations under the License.
lypinator 0:bb348c97df44 15 */
lypinator 0:bb348c97df44 16 #ifndef MBED_PINNAMES_H
lypinator 0:bb348c97df44 17 #define MBED_PINNAMES_H
lypinator 0:bb348c97df44 18
lypinator 0:bb348c97df44 19 #include "cmsis.h"
lypinator 0:bb348c97df44 20 #include "PinNamesTypes.h"
lypinator 0:bb348c97df44 21
lypinator 0:bb348c97df44 22 #ifdef __cplusplus
lypinator 0:bb348c97df44 23 extern "C" {
lypinator 0:bb348c97df44 24 #endif
lypinator 0:bb348c97df44 25
lypinator 0:bb348c97df44 26 typedef enum {
lypinator 0:bb348c97df44 27 PA_0 = 0x00,
lypinator 0:bb348c97df44 28 PA_1 = 0x01,
lypinator 0:bb348c97df44 29 PA_2 = 0x02,
lypinator 0:bb348c97df44 30 PA_3 = 0x03,
lypinator 0:bb348c97df44 31 PA_4 = 0x04,
lypinator 0:bb348c97df44 32 PA_5 = 0x05,
lypinator 0:bb348c97df44 33 PA_6 = 0x06,
lypinator 0:bb348c97df44 34 PA_7 = 0x07,
lypinator 0:bb348c97df44 35 PA_8 = 0x08,
lypinator 0:bb348c97df44 36 PA_9 = 0x09,
lypinator 0:bb348c97df44 37 PA_10 = 0x0A,
lypinator 0:bb348c97df44 38 PA_11 = 0x0B,
lypinator 0:bb348c97df44 39 PA_12 = 0x0C,
lypinator 0:bb348c97df44 40 PA_13 = 0x0D,
lypinator 0:bb348c97df44 41 PA_14 = 0x0E,
lypinator 0:bb348c97df44 42 PA_15 = 0x0F,
lypinator 0:bb348c97df44 43
lypinator 0:bb348c97df44 44 PB_0 = 0x10,
lypinator 0:bb348c97df44 45 PB_1 = 0x11,
lypinator 0:bb348c97df44 46 PB_2 = 0x12,
lypinator 0:bb348c97df44 47 PB_3 = 0x13,
lypinator 0:bb348c97df44 48 PB_4 = 0x14,
lypinator 0:bb348c97df44 49 PB_5 = 0x15,
lypinator 0:bb348c97df44 50 PB_6 = 0x16,
lypinator 0:bb348c97df44 51 PB_7 = 0x17,
lypinator 0:bb348c97df44 52 PB_8 = 0x18,
lypinator 0:bb348c97df44 53 PB_9 = 0x19,
lypinator 0:bb348c97df44 54 PB_10 = 0x1A,
lypinator 0:bb348c97df44 55 PB_11 = 0x1B,
lypinator 0:bb348c97df44 56 PB_12 = 0x1C,
lypinator 0:bb348c97df44 57 PB_13 = 0x1D,
lypinator 0:bb348c97df44 58 PB_14 = 0x1E,
lypinator 0:bb348c97df44 59 PB_15 = 0x1F,
lypinator 0:bb348c97df44 60
lypinator 0:bb348c97df44 61 PC_0 = 0x20,
lypinator 0:bb348c97df44 62 PC_1 = 0x21,
lypinator 0:bb348c97df44 63 PC_2 = 0x22,
lypinator 0:bb348c97df44 64 PC_3 = 0x23,
lypinator 0:bb348c97df44 65 PC_4 = 0x24,
lypinator 0:bb348c97df44 66 PC_5 = 0x25,
lypinator 0:bb348c97df44 67 PC_6 = 0x26,
lypinator 0:bb348c97df44 68 PC_7 = 0x27,
lypinator 0:bb348c97df44 69 PC_8 = 0x28,
lypinator 0:bb348c97df44 70 PC_9 = 0x29,
lypinator 0:bb348c97df44 71 PC_10 = 0x2A,
lypinator 0:bb348c97df44 72 PC_11 = 0x2B,
lypinator 0:bb348c97df44 73 PC_12 = 0x2C,
lypinator 0:bb348c97df44 74 PC_13 = 0x2D,
lypinator 0:bb348c97df44 75 PC_14 = 0x2E,
lypinator 0:bb348c97df44 76 PC_15 = 0x2F,
lypinator 0:bb348c97df44 77
lypinator 0:bb348c97df44 78 PD_0 = 0x30,
lypinator 0:bb348c97df44 79 PD_1 = 0x31,
lypinator 0:bb348c97df44 80 PD_2 = 0x32,
lypinator 0:bb348c97df44 81 PD_3 = 0x33,
lypinator 0:bb348c97df44 82 PD_4 = 0x34,
lypinator 0:bb348c97df44 83 PD_5 = 0x35,
lypinator 0:bb348c97df44 84 PD_6 = 0x36,
lypinator 0:bb348c97df44 85 PD_7 = 0x37,
lypinator 0:bb348c97df44 86 PD_8 = 0x38,
lypinator 0:bb348c97df44 87 PD_9 = 0x39,
lypinator 0:bb348c97df44 88 PD_10 = 0x3A,
lypinator 0:bb348c97df44 89 PD_11 = 0x3B,
lypinator 0:bb348c97df44 90 PD_12 = 0x3C,
lypinator 0:bb348c97df44 91 PD_13 = 0x3D,
lypinator 0:bb348c97df44 92 PD_14 = 0x3E,
lypinator 0:bb348c97df44 93 PD_15 = 0x3F,
lypinator 0:bb348c97df44 94
lypinator 0:bb348c97df44 95 PE_0 = 0x40,
lypinator 0:bb348c97df44 96 PE_1 = 0x41,
lypinator 0:bb348c97df44 97 PE_2 = 0x42,
lypinator 0:bb348c97df44 98 PE_3 = 0x43,
lypinator 0:bb348c97df44 99 PE_4 = 0x44,
lypinator 0:bb348c97df44 100 PE_5 = 0x45,
lypinator 0:bb348c97df44 101 PE_6 = 0x46,
lypinator 0:bb348c97df44 102 PE_7 = 0x47,
lypinator 0:bb348c97df44 103 PE_8 = 0x48,
lypinator 0:bb348c97df44 104 PE_9 = 0x49,
lypinator 0:bb348c97df44 105 PE_10 = 0x4A,
lypinator 0:bb348c97df44 106 PE_11 = 0x4B,
lypinator 0:bb348c97df44 107 PE_12 = 0x4C,
lypinator 0:bb348c97df44 108 PE_13 = 0x4D,
lypinator 0:bb348c97df44 109 PE_14 = 0x4E,
lypinator 0:bb348c97df44 110 PE_15 = 0x4F,
lypinator 0:bb348c97df44 111
lypinator 0:bb348c97df44 112 PF_0 = 0x50,
lypinator 0:bb348c97df44 113 PF_1 = 0x51,
lypinator 0:bb348c97df44 114 PF_2 = 0x52,
lypinator 0:bb348c97df44 115 PF_3 = 0x53,
lypinator 0:bb348c97df44 116 PF_4 = 0x54,
lypinator 0:bb348c97df44 117 PF_5 = 0x55,
lypinator 0:bb348c97df44 118 PF_6 = 0x56,
lypinator 0:bb348c97df44 119 PF_7 = 0x57,
lypinator 0:bb348c97df44 120 PF_8 = 0x58,
lypinator 0:bb348c97df44 121 PF_9 = 0x59,
lypinator 0:bb348c97df44 122 PF_10 = 0x5A,
lypinator 0:bb348c97df44 123 PF_11 = 0x5B,
lypinator 0:bb348c97df44 124 PF_12 = 0x5C,
lypinator 0:bb348c97df44 125 PF_13 = 0x5D,
lypinator 0:bb348c97df44 126 PF_14 = 0x5E,
lypinator 0:bb348c97df44 127 PF_15 = 0x5F,
lypinator 0:bb348c97df44 128
lypinator 0:bb348c97df44 129 PG_0 = 0x60,
lypinator 0:bb348c97df44 130 PG_1 = 0x61,
lypinator 0:bb348c97df44 131 PG_2 = 0x62,
lypinator 0:bb348c97df44 132 PG_3 = 0x63,
lypinator 0:bb348c97df44 133 PG_4 = 0x64,
lypinator 0:bb348c97df44 134 PG_5 = 0x65,
lypinator 0:bb348c97df44 135 PG_6 = 0x66,
lypinator 0:bb348c97df44 136 PG_7 = 0x67,
lypinator 0:bb348c97df44 137 PG_8 = 0x68,
lypinator 0:bb348c97df44 138 PG_9 = 0x69,
lypinator 0:bb348c97df44 139 PG_10 = 0x6A,
lypinator 0:bb348c97df44 140 PG_11 = 0x6B,
lypinator 0:bb348c97df44 141 PG_12 = 0x6C,
lypinator 0:bb348c97df44 142 PG_13 = 0x6D,
lypinator 0:bb348c97df44 143 PG_14 = 0x6E,
lypinator 0:bb348c97df44 144 PG_15 = 0x6F,
lypinator 0:bb348c97df44 145
lypinator 0:bb348c97df44 146 PH_0 = 0x70,
lypinator 0:bb348c97df44 147 PH_1 = 0x71,
lypinator 0:bb348c97df44 148
lypinator 0:bb348c97df44 149 // Not connected
lypinator 0:bb348c97df44 150 NC = (int)0xFFFFFFFF,
lypinator 0:bb348c97df44 151
lypinator 0:bb348c97df44 152 //Module pins.
lypinator 0:bb348c97df44 153 P_1 = NC,
lypinator 0:bb348c97df44 154 P_2 = PB_2,
lypinator 0:bb348c97df44 155 P_3 = NC,
lypinator 0:bb348c97df44 156 P_4 = PB_15,
lypinator 0:bb348c97df44 157 P_5 = PB_12,
lypinator 0:bb348c97df44 158 P_6 = PB_13,
lypinator 0:bb348c97df44 159 P_7 = PB_14,
lypinator 0:bb348c97df44 160 P_8 = PC_6,
lypinator 0:bb348c97df44 161 P_9 = PA_15,
lypinator 0:bb348c97df44 162 P_10 = NC,
lypinator 0:bb348c97df44 163 P_11 = NC,
lypinator 0:bb348c97df44 164 P_12 = PC_7,
lypinator 0:bb348c97df44 165 P_13 = NC,
lypinator 0:bb348c97df44 166 P_14 = PC_0,
lypinator 0:bb348c97df44 167 P_15 = NC,
lypinator 0:bb348c97df44 168 P_16 = PC_13,
lypinator 0:bb348c97df44 169 P_17 = PB_8,
lypinator 0:bb348c97df44 170 P_18 = PB_9,
lypinator 0:bb348c97df44 171 P_19 = PB_10,
lypinator 0:bb348c97df44 172 P_20 = NC,
lypinator 0:bb348c97df44 173 P_21 = NC,
lypinator 0:bb348c97df44 174 P_22 = NC,
lypinator 0:bb348c97df44 175 P_23 = NC,
lypinator 0:bb348c97df44 176 P_24 = NC,
lypinator 0:bb348c97df44 177 P_25 = PA_14,
lypinator 0:bb348c97df44 178 P_26 = PA_13,
lypinator 0:bb348c97df44 179 P_27 = PB_3,
lypinator 0:bb348c97df44 180 P_28 = NC,
lypinator 0:bb348c97df44 181 P_29 = PB_7,
lypinator 0:bb348c97df44 182 P_30 = PB_6,
lypinator 0:bb348c97df44 183 P_31 = PB_4,
lypinator 0:bb348c97df44 184 P_32 = NC,
lypinator 0:bb348c97df44 185 P_33 = PA_10,
lypinator 0:bb348c97df44 186 P_34 = PA_5,
lypinator 0:bb348c97df44 187 P_35 = PA_11,
lypinator 0:bb348c97df44 188 P_36 = PA_12,
lypinator 0:bb348c97df44 189 P_37 = PB_0,
lypinator 0:bb348c97df44 190 P_38 = PA_4,
lypinator 0:bb348c97df44 191 P_39 = NC,
lypinator 0:bb348c97df44 192 P_40 = NC,
lypinator 0:bb348c97df44 193 P_41 = NC,
lypinator 0:bb348c97df44 194
lypinator 0:bb348c97df44 195 // ADC internal channels
lypinator 0:bb348c97df44 196 ADC_TEMP = 0xF0,
lypinator 0:bb348c97df44 197 ADC_VREF = 0xF1,
lypinator 0:bb348c97df44 198 ADC_VBAT = 0xF2,
lypinator 0:bb348c97df44 199
lypinator 0:bb348c97df44 200
lypinator 0:bb348c97df44 201 // Generic signals namings
lypinator 0:bb348c97df44 202 LED1 = PB_2,
lypinator 0:bb348c97df44 203 LED2 = PB_10,
lypinator 0:bb348c97df44 204 LED3 = NC,
lypinator 0:bb348c97df44 205 LED_RED = LED1,
lypinator 0:bb348c97df44 206 LED_BLUE = LED2,
lypinator 0:bb348c97df44 207 USER_BUTTON = PC_13,
lypinator 0:bb348c97df44 208
lypinator 0:bb348c97df44 209 // Standardized button names
lypinator 0:bb348c97df44 210 BUTTON1 = USER_BUTTON,
lypinator 0:bb348c97df44 211
lypinator 0:bb348c97df44 212 SERIAL_TX = P_8,
lypinator 0:bb348c97df44 213 SERIAL_RX = P_12,
lypinator 0:bb348c97df44 214
lypinator 0:bb348c97df44 215 I2C_SCL = P_17,
lypinator 0:bb348c97df44 216 I2C_SDA = P_18,
lypinator 0:bb348c97df44 217
lypinator 0:bb348c97df44 218 SPI_MOSI = P_4,
lypinator 0:bb348c97df44 219 SPI_MISO = P_7,
lypinator 0:bb348c97df44 220 SPI_SCK = P_6,
lypinator 0:bb348c97df44 221 SPI_CS = P_5,
lypinator 0:bb348c97df44 222
lypinator 0:bb348c97df44 223 // STDIO for console print
lypinator 0:bb348c97df44 224 #ifdef MBED_CONF_TARGET_STDIO_UART_TX
lypinator 0:bb348c97df44 225 STDIO_UART_TX = MBED_CONF_TARGET_STDIO_UART_TX,
lypinator 0:bb348c97df44 226 #elif MBED_CONF_TARGET_USB_TX
lypinator 0:bb348c97df44 227 STDIO_UART_TX = MBED_CONF_TARGET_USB_TX,
lypinator 0:bb348c97df44 228 #else
lypinator 0:bb348c97df44 229 STDIO_UART_TX = PB_6,
lypinator 0:bb348c97df44 230 #endif
lypinator 0:bb348c97df44 231
lypinator 0:bb348c97df44 232 #ifdef MBED_CONF_TARGET_STDIO_UART_RX
lypinator 0:bb348c97df44 233 STDIO_UART_RX = MBED_CONF_TARGET_STDIO_UART_RX,
lypinator 0:bb348c97df44 234 #elif MBED_CONF_TARGET_USB_RX
lypinator 0:bb348c97df44 235 STDIO_UART_TX = MBED_CONF_TARGET_USB_RX,
lypinator 0:bb348c97df44 236 #else
lypinator 0:bb348c97df44 237 STDIO_UART_RX = PB_7,
lypinator 0:bb348c97df44 238 #endif
lypinator 0:bb348c97df44 239 //DAPLink
lypinator 0:bb348c97df44 240 USBRX = STDIO_UART_RX,
lypinator 0:bb348c97df44 241 USBTX = STDIO_UART_TX,
lypinator 0:bb348c97df44 242 SWDIO = P_26,
lypinator 0:bb348c97df44 243 SWCLK = P_25,
lypinator 0:bb348c97df44 244 NTRST = P_13,
lypinator 0:bb348c97df44 245
lypinator 0:bb348c97df44 246 //MTB Aliases
lypinator 0:bb348c97df44 247 //Left side (top view)
lypinator 0:bb348c97df44 248 TGT_SWDIO = SWDIO,
lypinator 0:bb348c97df44 249 TGT_SWCLK = SWCLK,
lypinator 0:bb348c97df44 250 TGT_RESET = NTRST,
lypinator 0:bb348c97df44 251 PB6 = P_30,
lypinator 0:bb348c97df44 252 PB7 = P_29,
lypinator 0:bb348c97df44 253 PC6 = SERIAL_TX,
lypinator 0:bb348c97df44 254 PC7 = SERIAL_RX,
lypinator 0:bb348c97df44 255 PB9 = I2C_SDA,
lypinator 0:bb348c97df44 256 PB8 = I2C_SCL,
lypinator 0:bb348c97df44 257 PB15 = SPI_MOSI,
lypinator 0:bb348c97df44 258 PB14 = SPI_MISO,
lypinator 0:bb348c97df44 259 PB13 = SPI_SCK,
lypinator 0:bb348c97df44 260 PC13 = SPI_CS,
lypinator 0:bb348c97df44 261 PC0 = P_14,
lypinator 0:bb348c97df44 262 PA4 = P_38,
lypinator 0:bb348c97df44 263 PA5 = P_34,
lypinator 0:bb348c97df44 264 PB0 = P_37,
lypinator 0:bb348c97df44 265
lypinator 0:bb348c97df44 266 //Right side (top view)
lypinator 0:bb348c97df44 267 GND = NC,
lypinator 0:bb348c97df44 268 PA11 = P_35,
lypinator 0:bb348c97df44 269 PA12 = P_36,
lypinator 0:bb348c97df44 270 PB4 = P_31, //CS for LCD
lypinator 0:bb348c97df44 271 PB3 = P_27, //RESET for LCD
lypinator 0:bb348c97df44 272 PA15 = P_9, //A0 for LCD
lypinator 0:bb348c97df44 273 PA10 = P_33,
lypinator 0:bb348c97df44 274 PB12 = P_5,
lypinator 0:bb348c97df44 275 PB10 = LED2,
lypinator 0:bb348c97df44 276 PB2 = LED1,
lypinator 0:bb348c97df44 277
lypinator 0:bb348c97df44 278 } PinName;
lypinator 0:bb348c97df44 279
lypinator 0:bb348c97df44 280 #ifdef __cplusplus
lypinator 0:bb348c97df44 281 }
lypinator 0:bb348c97df44 282 #endif
lypinator 0:bb348c97df44 283
lypinator 0:bb348c97df44 284 #endif