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 *******************************************************************************
lypinator 0:bb348c97df44 3 * Copyright (c) 2014, STMicroelectronics
lypinator 0:bb348c97df44 4 * All rights reserved.
lypinator 0:bb348c97df44 5 *
lypinator 0:bb348c97df44 6 * Redistribution and use in source and binary forms, with or without
lypinator 0:bb348c97df44 7 * modification, are permitted provided that the following conditions are met:
lypinator 0:bb348c97df44 8 *
lypinator 0:bb348c97df44 9 * 1. Redistributions of source code must retain the above copyright notice,
lypinator 0:bb348c97df44 10 * this list of conditions and the following disclaimer.
lypinator 0:bb348c97df44 11 * 2. Redistributions in binary form must reproduce the above copyright notice,
lypinator 0:bb348c97df44 12 * this list of conditions and the following disclaimer in the documentation
lypinator 0:bb348c97df44 13 * and/or other materials provided with the distribution.
lypinator 0:bb348c97df44 14 * 3. Neither the name of STMicroelectronics nor the names of its contributors
lypinator 0:bb348c97df44 15 * may be used to endorse or promote products derived from this software
lypinator 0:bb348c97df44 16 * without specific prior written permission.
lypinator 0:bb348c97df44 17 *
lypinator 0:bb348c97df44 18 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
lypinator 0:bb348c97df44 19 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
lypinator 0:bb348c97df44 20 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
lypinator 0:bb348c97df44 21 * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
lypinator 0:bb348c97df44 22 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
lypinator 0:bb348c97df44 23 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
lypinator 0:bb348c97df44 24 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
lypinator 0:bb348c97df44 25 * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
lypinator 0:bb348c97df44 26 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
lypinator 0:bb348c97df44 27 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
lypinator 0:bb348c97df44 28 *******************************************************************************
lypinator 0:bb348c97df44 29 */
lypinator 0:bb348c97df44 30 #ifndef MBED_PINNAMES_H
lypinator 0:bb348c97df44 31 #define MBED_PINNAMES_H
lypinator 0:bb348c97df44 32
lypinator 0:bb348c97df44 33 #include "cmsis.h"
lypinator 0:bb348c97df44 34 #include "PinNamesTypes.h"
lypinator 0:bb348c97df44 35
lypinator 0:bb348c97df44 36 #ifdef __cplusplus
lypinator 0:bb348c97df44 37 extern "C" {
lypinator 0:bb348c97df44 38 #endif
lypinator 0:bb348c97df44 39
lypinator 0:bb348c97df44 40 typedef enum {
lypinator 0:bb348c97df44 41 // Not connected
lypinator 0:bb348c97df44 42 NC = -1,
lypinator 0:bb348c97df44 43
lypinator 0:bb348c97df44 44 PA_0 = 0x00,
lypinator 0:bb348c97df44 45 PA_1 = 0x01,
lypinator 0:bb348c97df44 46 PA_2 = 0x02,
lypinator 0:bb348c97df44 47 PA_3 = 0x03,
lypinator 0:bb348c97df44 48 PA_4 = 0x04,
lypinator 0:bb348c97df44 49 PA_5 = 0x05,
lypinator 0:bb348c97df44 50 PA_6 = 0x06,
lypinator 0:bb348c97df44 51 PA_7 = 0x07,
lypinator 0:bb348c97df44 52 PA_8 = 0x08,
lypinator 0:bb348c97df44 53 PA_9 = 0x09,
lypinator 0:bb348c97df44 54 PA_10 = 0x0A,
lypinator 0:bb348c97df44 55 PA_11 = 0x0B,
lypinator 0:bb348c97df44 56 PA_12 = 0x0C,
lypinator 0:bb348c97df44 57 PA_13 = 0x0D,
lypinator 0:bb348c97df44 58 PA_14 = 0x0E,
lypinator 0:bb348c97df44 59 PA_15 = 0x0F,
lypinator 0:bb348c97df44 60
lypinator 0:bb348c97df44 61 PB_0 = 0x10,
lypinator 0:bb348c97df44 62 PB_1 = 0x11,
lypinator 0:bb348c97df44 63 PB_2 = 0x12,
lypinator 0:bb348c97df44 64 PB_3 = 0x13,
lypinator 0:bb348c97df44 65 PB_4 = 0x14,
lypinator 0:bb348c97df44 66 PB_5 = 0x15,
lypinator 0:bb348c97df44 67 PB_6 = 0x16,
lypinator 0:bb348c97df44 68 PB_7 = 0x17,
lypinator 0:bb348c97df44 69 PB_8 = 0x18,
lypinator 0:bb348c97df44 70 PB_9 = 0x19,
lypinator 0:bb348c97df44 71 PB_10 = 0x1A,
lypinator 0:bb348c97df44 72 PB_12 = 0x1C,
lypinator 0:bb348c97df44 73 PB_13 = 0x1D,
lypinator 0:bb348c97df44 74 PB_14 = 0x1E,
lypinator 0:bb348c97df44 75 PB_15 = 0x1F,
lypinator 0:bb348c97df44 76
lypinator 0:bb348c97df44 77 PC_0 = 0x20,
lypinator 0:bb348c97df44 78 PC_1 = 0x21,
lypinator 0:bb348c97df44 79 PC_2 = 0x22,
lypinator 0:bb348c97df44 80 PC_3 = 0x23,
lypinator 0:bb348c97df44 81 PC_4 = 0x24,
lypinator 0:bb348c97df44 82 PC_5 = 0x25,
lypinator 0:bb348c97df44 83 PC_6 = 0x26,
lypinator 0:bb348c97df44 84 PC_7 = 0x27,
lypinator 0:bb348c97df44 85 PC_8 = 0x28,
lypinator 0:bb348c97df44 86 PC_9 = 0x29,
lypinator 0:bb348c97df44 87 PC_10 = 0x2A,
lypinator 0:bb348c97df44 88 PC_11 = 0x2B,
lypinator 0:bb348c97df44 89 PC_12 = 0x2C,
lypinator 0:bb348c97df44 90 PC_13 = 0x2D,
lypinator 0:bb348c97df44 91 PC_14 = 0x2E,
lypinator 0:bb348c97df44 92 PC_15 = 0x2F,
lypinator 0:bb348c97df44 93
lypinator 0:bb348c97df44 94 PD_2 = 0x32,
lypinator 0:bb348c97df44 95
lypinator 0:bb348c97df44 96 PH_0 = 0x70,
lypinator 0:bb348c97df44 97 PH_1 = 0x71,
lypinator 0:bb348c97df44 98
lypinator 0:bb348c97df44 99 // ADC internal channels
lypinator 0:bb348c97df44 100 ADC_TEMP = 0xF0,
lypinator 0:bb348c97df44 101 ADC_VREF = 0xF1,
lypinator 0:bb348c97df44 102 ADC_VBAT = 0xF2,
lypinator 0:bb348c97df44 103
lypinator 0:bb348c97df44 104 // Module pins
lypinator 0:bb348c97df44 105 // Defined based on the external pin (40-pin connector) alternate function mapping (Page 15 of MTQ-H5-B01 device guide)
lypinator 0:bb348c97df44 106 // Device guide used: S000628,Version1.4
lypinator 0:bb348c97df44 107 P_1 = PB_6,
lypinator 0:bb348c97df44 108 P_2 = PA_14,
lypinator 0:bb348c97df44 109 P_3 = PA_15,
lypinator 0:bb348c97df44 110 P_4 = PB_4,
lypinator 0:bb348c97df44 111 P_5 = NC,
lypinator 0:bb348c97df44 112 P_6 = NC,
lypinator 0:bb348c97df44 113 P_7 = NC,
lypinator 0:bb348c97df44 114 P_8 = NC,
lypinator 0:bb348c97df44 115 P_9 = PA_2,
lypinator 0:bb348c97df44 116 P_10 = PA_7,
lypinator 0:bb348c97df44 117 P_11 = PB_1,
lypinator 0:bb348c97df44 118 P_12 = PA_1,
lypinator 0:bb348c97df44 119 P_13 = NC,
lypinator 0:bb348c97df44 120 P_14 = PB_5,
lypinator 0:bb348c97df44 121 P_15 = PA_5,
lypinator 0:bb348c97df44 122 P_16 = PB_8,
lypinator 0:bb348c97df44 123 P_17 = PB_15,
lypinator 0:bb348c97df44 124 P_18 = PC_2,
lypinator 0:bb348c97df44 125 P_19 = PB_0,
lypinator 0:bb348c97df44 126 P_20 = PC_0,
lypinator 0:bb348c97df44 127 P_21 = PC_1,
lypinator 0:bb348c97df44 128 P_22 = PC_4,
lypinator 0:bb348c97df44 129 P_23 = PB_13,
lypinator 0:bb348c97df44 130 P_24 = PC_9,
lypinator 0:bb348c97df44 131 P_25 = PB_9,
lypinator 0:bb348c97df44 132 P_26 = PA_6,
lypinator 0:bb348c97df44 133 P_27 = PC_8,
lypinator 0:bb348c97df44 134 P_28 = NC,
lypinator 0:bb348c97df44 135 P_29 = PA_0,
lypinator 0:bb348c97df44 136 P_30 = PA_9,
lypinator 0:bb348c97df44 137 P_31 = PA_8,
lypinator 0:bb348c97df44 138 P_32 = PA_3,
lypinator 0:bb348c97df44 139 P_33 = NC,
lypinator 0:bb348c97df44 140 P_34 = NC,
lypinator 0:bb348c97df44 141 P_35 = NC,
lypinator 0:bb348c97df44 142 P_36 = NC,
lypinator 0:bb348c97df44 143 P_37 = NC,
lypinator 0:bb348c97df44 144 P_38 = PB_3,
lypinator 0:bb348c97df44 145 P_39 = PA_13,
lypinator 0:bb348c97df44 146 P_40 = PB_7,
lypinator 0:bb348c97df44 147
lypinator 0:bb348c97df44 148 // STDIO for console print
lypinator 0:bb348c97df44 149 #ifdef MBED_CONF_TARGET_STDIO_UART_TX
lypinator 0:bb348c97df44 150 STDIO_UART_TX = MBED_CONF_TARGET_STDIO_UART_TX,
lypinator 0:bb348c97df44 151 #elif MBED_CONF_TARGET_USB_TX
lypinator 0:bb348c97df44 152 STDIO_UART_TX = MBED_CONF_TARGET_USB_TX,
lypinator 0:bb348c97df44 153 #else
lypinator 0:bb348c97df44 154 STDIO_UART_TX = PB_6,
lypinator 0:bb348c97df44 155 #endif
lypinator 0:bb348c97df44 156
lypinator 0:bb348c97df44 157 #ifdef MBED_CONF_TARGET_STDIO_UART_RX
lypinator 0:bb348c97df44 158 STDIO_UART_RX = MBED_CONF_TARGET_STDIO_UART_RX,
lypinator 0:bb348c97df44 159 #elif MBED_CONF_TARGET_USB_RX
lypinator 0:bb348c97df44 160 STDIO_UART_TX = MBED_CONF_TARGET_USB_RX,
lypinator 0:bb348c97df44 161 #else
lypinator 0:bb348c97df44 162 STDIO_UART_RX = PB_7,
lypinator 0:bb348c97df44 163 #endif
lypinator 0:bb348c97df44 164
lypinator 0:bb348c97df44 165 //DAPLink
lypinator 0:bb348c97df44 166 USBTX = STDIO_UART_TX,
lypinator 0:bb348c97df44 167 USBRX = STDIO_UART_RX,
lypinator 0:bb348c97df44 168 SWDIO = PA_13,
lypinator 0:bb348c97df44 169 SWCLK = PA_14,
lypinator 0:bb348c97df44 170
lypinator 0:bb348c97df44 171 I2C1_SCL = PB_8,
lypinator 0:bb348c97df44 172 I2C1_SDA = PB_9,
lypinator 0:bb348c97df44 173 I2C3_SCL = PA_8,
lypinator 0:bb348c97df44 174 I2C3_SDA = PC_9,
lypinator 0:bb348c97df44 175
lypinator 0:bb348c97df44 176 I2C_SCL = I2C1_SCL,
lypinator 0:bb348c97df44 177 I2C_SDA = I2C1_SDA,
lypinator 0:bb348c97df44 178
lypinator 0:bb348c97df44 179 SPI1_MOSI = PB_5,
lypinator 0:bb348c97df44 180 SPI1_MISO = PA_6,
lypinator 0:bb348c97df44 181 SPI1_SCK = PA_5,
lypinator 0:bb348c97df44 182 SPI2_MOSI = PB_15,
lypinator 0:bb348c97df44 183 SPI2_MISO = PC_2,
lypinator 0:bb348c97df44 184 SPI2_SCK = PB_13,
lypinator 0:bb348c97df44 185
lypinator 0:bb348c97df44 186 SPI_MOSI = SPI1_MOSI,
lypinator 0:bb348c97df44 187 SPI_MISO = SPI1_MISO,
lypinator 0:bb348c97df44 188 SPI_SCK = SPI1_SCK,
lypinator 0:bb348c97df44 189 SPI_CS1 = PA_3, //LCD CS
lypinator 0:bb348c97df44 190 SPI_CS2 = PA_15, //SD Card CS
lypinator 0:bb348c97df44 191
lypinator 0:bb348c97df44 192 SERIAL_TX = PA_2,
lypinator 0:bb348c97df44 193 SERIAL_RX = PA_3,
lypinator 0:bb348c97df44 194 SERIAL_RTS = PA_0,
lypinator 0:bb348c97df44 195 SERIAL_CTS = PA_1,
lypinator 0:bb348c97df44 196 SERIAL_DCD = PA_7,
lypinator 0:bb348c97df44 197 SERIAL_DSR = PA_9,
lypinator 0:bb348c97df44 198 SERIAL_DTR = PA_8,
lypinator 0:bb348c97df44 199 SERIAL_RI = PB_1,
lypinator 0:bb348c97df44 200
lypinator 0:bb348c97df44 201 WAKEUP = PA_0,
lypinator 0:bb348c97df44 202
lypinator 0:bb348c97df44 203 // Generic signals namings
lypinator 0:bb348c97df44 204 LED1 = PA_7,
lypinator 0:bb348c97df44 205 LED2 = PC_4,
lypinator 0:bb348c97df44 206 LED3 = PB_13, //MTB mapped to LINK_STATUS pin on module.
lypinator 0:bb348c97df44 207 SW1 = PB_4,
lypinator 0:bb348c97df44 208 GPIO1 = PC_8,
lypinator 0:bb348c97df44 209 GPIO3 = PB_1,
lypinator 0:bb348c97df44 210 AIN0 = PB_0,
lypinator 0:bb348c97df44 211 AIN1 = PC_0,
lypinator 0:bb348c97df44 212 AIN2 = PC_1,
lypinator 0:bb348c97df44 213
lypinator 0:bb348c97df44 214 //Standardized button names
lypinator 0:bb348c97df44 215 BUTTON1 = SW1,
lypinator 0:bb348c97df44 216
lypinator 0:bb348c97df44 217 RADIO_TX = PC_7,
lypinator 0:bb348c97df44 218 RADIO_RX = PC_6,
lypinator 0:bb348c97df44 219 RADIO_RTS = PB_10,
lypinator 0:bb348c97df44 220 RADIO_CTS = PB_12,
lypinator 0:bb348c97df44 221 RADIO_DCD = NC,
lypinator 0:bb348c97df44 222 RADIO_DSR = NC,
lypinator 0:bb348c97df44 223 RADIO_DTR = NC,
lypinator 0:bb348c97df44 224 RADIO_RI = NC,
lypinator 0:bb348c97df44 225 MDMPWRON = PC_13, // 3G_ONOFF DragonFly Design Guide, Page No. 16
lypinator 0:bb348c97df44 226 MDMTXD = RADIO_TX, // Transmit Data
lypinator 0:bb348c97df44 227 MDMRXD = RADIO_RX, // Receive Data
lypinator 0:bb348c97df44 228 MDMRTS = RADIO_RTS, // Request to Send
lypinator 0:bb348c97df44 229 MDMCTS = RADIO_CTS, // Clear to Send
lypinator 0:bb348c97df44 230 MDMDCD = RADIO_DCD, // Data Carrier Detect
lypinator 0:bb348c97df44 231 MDMDSR = RADIO_DSR, // Data Set Ready
lypinator 0:bb348c97df44 232 MDMDTR = RADIO_DTR, // Data Terminal Ready
lypinator 0:bb348c97df44 233 MDMRI = RADIO_RI, // Ring Indicator
lypinator 0:bb348c97df44 234
lypinator 0:bb348c97df44 235 } PinName;
lypinator 0:bb348c97df44 236
lypinator 0:bb348c97df44 237 #define ACTIVE_HIGH_POLARITY 1
lypinator 0:bb348c97df44 238 #define ACTIVE_LOW_POLARITY 0
lypinator 0:bb348c97df44 239
lypinator 0:bb348c97df44 240 #define MDM_PIN_POLARITY ACTIVE_HIGH_POLARITY
lypinator 0:bb348c97df44 241
lypinator 0:bb348c97df44 242
lypinator 0:bb348c97df44 243 #ifdef __cplusplus
lypinator 0:bb348c97df44 244 }
lypinator 0:bb348c97df44 245 #endif
lypinator 0:bb348c97df44 246
lypinator 0:bb348c97df44 247 #endif