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 // Arduino connector namings
lypinator 0:bb348c97df44 105 A0 = PC_2,
lypinator 0:bb348c97df44 106 A1 = PC_0,
lypinator 0:bb348c97df44 107 A2 = PC_4,
lypinator 0:bb348c97df44 108 A3 = PB_0,
lypinator 0:bb348c97df44 109 A4 = PC_1,
lypinator 0:bb348c97df44 110 A5 = PC_9,
lypinator 0:bb348c97df44 111 D0 = PA_3,
lypinator 0:bb348c97df44 112 D1 = PA_2,
lypinator 0:bb348c97df44 113 D2 = PB_15,
lypinator 0:bb348c97df44 114 D3 = PA_0,
lypinator 0:bb348c97df44 115 D4 = PA_7,
lypinator 0:bb348c97df44 116 D5 = PA_9,
lypinator 0:bb348c97df44 117 D6 = PA_1,
lypinator 0:bb348c97df44 118 D7 = PA_8,
lypinator 0:bb348c97df44 119 D8 = PB_1,
lypinator 0:bb348c97df44 120 D9 = PB_13,
lypinator 0:bb348c97df44 121 D10 = PC_8,
lypinator 0:bb348c97df44 122 D11 = PB_5,
lypinator 0:bb348c97df44 123 D12 = PA_6,
lypinator 0:bb348c97df44 124 D13 = PA_5,
lypinator 0:bb348c97df44 125 D14 = PB_9,
lypinator 0:bb348c97df44 126 D15 = PB_8,
lypinator 0:bb348c97df44 127
lypinator 0:bb348c97df44 128 // Generic signals namings
lypinator 0:bb348c97df44 129 LED1 = D3,
lypinator 0:bb348c97df44 130 LED2 = D3,
lypinator 0:bb348c97df44 131 LED3 = D3,
lypinator 0:bb348c97df44 132 LED4 = D3,
lypinator 0:bb348c97df44 133 SERIAL_TX = D1,
lypinator 0:bb348c97df44 134 SERIAL_RX = D0,
lypinator 0:bb348c97df44 135 SERIAL_RTS = D3,
lypinator 0:bb348c97df44 136 SERIAL_CTS = D6,
lypinator 0:bb348c97df44 137 SERIAL_DCD = D4,
lypinator 0:bb348c97df44 138 SERIAL_DSR = D5,
lypinator 0:bb348c97df44 139 SERIAL_DTR = D7,
lypinator 0:bb348c97df44 140 SERIAL_RI = D8,
lypinator 0:bb348c97df44 141 USBTX = PB_6,
lypinator 0:bb348c97df44 142 USBRX = PB_7,
lypinator 0:bb348c97df44 143 RADIO_TX = PC_7,
lypinator 0:bb348c97df44 144 RADIO_RX = PC_6,
lypinator 0:bb348c97df44 145 RADIO_RTS = PB_10,
lypinator 0:bb348c97df44 146 RADIO_CTS = PB_12,
lypinator 0:bb348c97df44 147 RADIO_DCD = NC,
lypinator 0:bb348c97df44 148 RADIO_DSR = NC,
lypinator 0:bb348c97df44 149 RADIO_DTR = NC,
lypinator 0:bb348c97df44 150 RADIO_RI = NC,
lypinator 0:bb348c97df44 151 MDMPWRON = PC_13, // 3G_ONOFF DragonFly Design Guide, Page No. 16
lypinator 0:bb348c97df44 152 MDMTXD = RADIO_TX, // Transmit Data
lypinator 0:bb348c97df44 153 MDMRXD = RADIO_RX, // Receive Data
lypinator 0:bb348c97df44 154 MDMRTS = RADIO_RTS, // Request to Send
lypinator 0:bb348c97df44 155 MDMCTS = RADIO_CTS, // Clear to Send
lypinator 0:bb348c97df44 156 MDMDCD = RADIO_DCD, // Data Carrier Detect
lypinator 0:bb348c97df44 157 MDMDSR = RADIO_DSR, // Data Set Ready
lypinator 0:bb348c97df44 158 MDMDTR = RADIO_DTR, // Data Terminal Ready
lypinator 0:bb348c97df44 159 MDMRI = RADIO_RI, // Ring Indicator
lypinator 0:bb348c97df44 160
lypinator 0:bb348c97df44 161 WAKEUP = D3,
lypinator 0:bb348c97df44 162
lypinator 0:bb348c97df44 163 // I2C1 and I2C3 are available on Arduino pins
lypinator 0:bb348c97df44 164 I2C1_SCL = D15,
lypinator 0:bb348c97df44 165 I2C1_SDA = D14,
lypinator 0:bb348c97df44 166 I2C3_SCL = D7,
lypinator 0:bb348c97df44 167 I2C3_SDA = A5,
lypinator 0:bb348c97df44 168
lypinator 0:bb348c97df44 169 // legacy definitions
lypinator 0:bb348c97df44 170 I2C_SCL = I2C1_SCL,
lypinator 0:bb348c97df44 171 I2C_SDA = I2C1_SDA,
lypinator 0:bb348c97df44 172
lypinator 0:bb348c97df44 173 // SPI1 and SPI2 are available on Arduino pins
lypinator 0:bb348c97df44 174 SPI1_MOSI = D11,
lypinator 0:bb348c97df44 175 SPI1_MISO = D12,
lypinator 0:bb348c97df44 176 SPI1_SCK = D13,
lypinator 0:bb348c97df44 177 SPI2_MOSI = D2,
lypinator 0:bb348c97df44 178 SPI2_MISO = A0,
lypinator 0:bb348c97df44 179 SPI2_SCK = D9,
lypinator 0:bb348c97df44 180
lypinator 0:bb348c97df44 181 // SPI3 connects to flash part
lypinator 0:bb348c97df44 182 SPI3_MOSI = PC_12,
lypinator 0:bb348c97df44 183 SPI3_MISO = PC_11,
lypinator 0:bb348c97df44 184 SPI3_SCK = PC_10,
lypinator 0:bb348c97df44 185
lypinator 0:bb348c97df44 186 // legacy definitions
lypinator 0:bb348c97df44 187 SPI_MOSI = SPI3_MOSI,
lypinator 0:bb348c97df44 188 SPI_MISO = SPI3_MISO,
lypinator 0:bb348c97df44 189 SPI_SCK = SPI3_SCK,
lypinator 0:bb348c97df44 190 SPI_CS1 = PA_4,
lypinator 0:bb348c97df44 191 SPI_CS2 = PB_14
lypinator 0:bb348c97df44 192
lypinator 0:bb348c97df44 193 } PinName;
lypinator 0:bb348c97df44 194
lypinator 0:bb348c97df44 195 #define ACTIVE_HIGH_POLARITY 1
lypinator 0:bb348c97df44 196 #define ACTIVE_LOW_POLARITY 0
lypinator 0:bb348c97df44 197
lypinator 0:bb348c97df44 198 #define MDM_PIN_POLARITY ACTIVE_HIGH_POLARITY
lypinator 0:bb348c97df44 199
lypinator 0:bb348c97df44 200
lypinator 0:bb348c97df44 201 #ifdef __cplusplus
lypinator 0:bb348c97df44 202 }
lypinator 0:bb348c97df44 203 #endif
lypinator 0:bb348c97df44 204
lypinator 0:bb348c97df44 205 #endif