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
lypinator 0:bb348c97df44 31 #include "PeripheralPins.h"
lypinator 0:bb348c97df44 32 // =====
lypinator 0:bb348c97df44 33 // Note: Commented lines are alternative possibilities which are not used per default.
lypinator 0:bb348c97df44 34 // If you change them, you will have also to modify the corresponding xxx_api.c file
lypinator 0:bb348c97df44 35 // for pwmout, analogin, analogout, ...
lypinator 0:bb348c97df44 36 // =====
lypinator 0:bb348c97df44 37
lypinator 0:bb348c97df44 38 //*** ADC ***
lypinator 0:bb348c97df44 39
lypinator 0:bb348c97df44 40 const PinMap PinMap_ADC[] = {
lypinator 0:bb348c97df44 41 {PA_3, ADC_1, STM_PIN_DATA_EXT(STM_MODE_ANALOG, GPIO_NOPULL, 0, 3, 0)}, // ADC1_IN3
lypinator 0:bb348c97df44 42 {PA_4, ADC_1, STM_PIN_DATA_EXT(STM_MODE_ANALOG, GPIO_NOPULL, 0, 4, 0)}, // ADC1_IN4
lypinator 0:bb348c97df44 43 {PA_6, ADC_1, STM_PIN_DATA_EXT(STM_MODE_ANALOG, GPIO_NOPULL, 0, 6, 0)}, // ADC1_IN6
lypinator 0:bb348c97df44 44 {PB_0, ADC_1, STM_PIN_DATA_EXT(STM_MODE_ANALOG, GPIO_NOPULL, 0, 8, 0)}, // ADC1_IN8
lypinator 0:bb348c97df44 45 {PC_0, ADC_1, STM_PIN_DATA_EXT(STM_MODE_ANALOG, GPIO_NOPULL, 0, 10, 0)}, // ADC1_IN10
lypinator 0:bb348c97df44 46 {PC_3, ADC_1, STM_PIN_DATA_EXT(STM_MODE_ANALOG, GPIO_NOPULL, 0, 13, 0)}, // ADC1_IN13
lypinator 0:bb348c97df44 47 {NC, NC, 0}
lypinator 0:bb348c97df44 48 };
lypinator 0:bb348c97df44 49
lypinator 0:bb348c97df44 50 const PinMap PinMap_ADC_Internal[] = {
lypinator 0:bb348c97df44 51 {NC, NC, 0}
lypinator 0:bb348c97df44 52 };
lypinator 0:bb348c97df44 53
lypinator 0:bb348c97df44 54 //*** I2C ***
lypinator 0:bb348c97df44 55
lypinator 0:bb348c97df44 56
lypinator 0:bb348c97df44 57 const PinMap PinMap_I2C_SDA[] = {
lypinator 0:bb348c97df44 58 {PB_7, I2C_1, STM_PIN_DATA(STM_MODE_AF_OD, GPIO_NOPULL, GPIO_AF4_I2C1)},
lypinator 0:bb348c97df44 59 {PC_9, I2C_3, STM_PIN_DATA(STM_MODE_AF_OD, GPIO_NOPULL, GPIO_AF4_I2C3)},
lypinator 0:bb348c97df44 60 {NC, NC, 0}
lypinator 0:bb348c97df44 61 };
lypinator 0:bb348c97df44 62
lypinator 0:bb348c97df44 63 const PinMap PinMap_I2C_SCL[] = {
lypinator 0:bb348c97df44 64 {PB_6, I2C_1, STM_PIN_DATA(STM_MODE_AF_OD, GPIO_NOPULL, GPIO_AF4_I2C1)},
lypinator 0:bb348c97df44 65 {PA_8, I2C_3, STM_PIN_DATA(STM_MODE_AF_OD, GPIO_NOPULL, GPIO_AF4_I2C3)},
lypinator 0:bb348c97df44 66 {NC, NC, 0}
lypinator 0:bb348c97df44 67 };
lypinator 0:bb348c97df44 68
lypinator 0:bb348c97df44 69 const PinMap PinMap_DAC[] = {
lypinator 0:bb348c97df44 70 {PA_5, DAC_1, STM_PIN_DATA_EXT(STM_MODE_ANALOG, GPIO_NOPULL, 0, 2, 0)}, // DAC_OUT2 - ARDUINO D13
lypinator 0:bb348c97df44 71 {NC, NC, 0}
lypinator 0:bb348c97df44 72 };
lypinator 0:bb348c97df44 73
lypinator 0:bb348c97df44 74 //*** PWM ***
lypinator 0:bb348c97df44 75
lypinator 0:bb348c97df44 76 const PinMap PinMap_PWM[] = {
lypinator 0:bb348c97df44 77 {PE_13, PWM_1, STM_PIN_DATA_EXT(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF1_TIM1, 3, 0)}, // TIM1_CH3
lypinator 0:bb348c97df44 78 {PE_9, PWM_1, STM_PIN_DATA_EXT(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF1_TIM1, 1, 0)}, // TIM1_CH1N
lypinator 0:bb348c97df44 79 {PB_1, PWM_3, STM_PIN_DATA_EXT(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF2_TIM3, 4, 0)}, // TIM3_CH4
lypinator 0:bb348c97df44 80 {PD_12, PWM_4, STM_PIN_DATA_EXT(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF2_TIM4, 1, 0)}, // TIM4_CH1
lypinator 0:bb348c97df44 81 {PB_8, PWM_10, STM_PIN_DATA_EXT(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF3_TIM10, 1, 0)}, // TIM10_CH1
lypinator 0:bb348c97df44 82 {PB_15, PWM_12, STM_PIN_DATA_EXT(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF9_TIM12, 2, 0)}, // TIM12_CH2
lypinator 0:bb348c97df44 83 {NC, NC, 0}
lypinator 0:bb348c97df44 84 };
lypinator 0:bb348c97df44 85
lypinator 0:bb348c97df44 86 //*** SERIAL ***
lypinator 0:bb348c97df44 87
lypinator 0:bb348c97df44 88 const PinMap PinMap_UART_TX[] = {
lypinator 0:bb348c97df44 89 {PA_9, UART_1, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF7_USART1)},
lypinator 0:bb348c97df44 90 {PD_5, UART_2, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF7_USART2)},
lypinator 0:bb348c97df44 91 {PD_8, UART_3, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF7_USART3)},
lypinator 0:bb348c97df44 92 {PC_6, UART_6, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF8_USART6)},
lypinator 0:bb348c97df44 93 {NC, NC, 0}
lypinator 0:bb348c97df44 94 };
lypinator 0:bb348c97df44 95
lypinator 0:bb348c97df44 96 const PinMap PinMap_UART_RX[] = {
lypinator 0:bb348c97df44 97 {PA_10, UART_1, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF7_USART1)},
lypinator 0:bb348c97df44 98 {PD_6, UART_2, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF7_USART2)},
lypinator 0:bb348c97df44 99 {PD_9, UART_3, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF7_USART3)},
lypinator 0:bb348c97df44 100 {PC_7, UART_6, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF8_USART6)},
lypinator 0:bb348c97df44 101 {NC, NC, 0}
lypinator 0:bb348c97df44 102 };
lypinator 0:bb348c97df44 103
lypinator 0:bb348c97df44 104 const PinMap PinMap_UART_RTS[] = {
lypinator 0:bb348c97df44 105 {PA_12, UART_1, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF7_USART1)},
lypinator 0:bb348c97df44 106 {PD_4, UART_2, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF7_USART2)},
lypinator 0:bb348c97df44 107 {PB_14, UART_3, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF7_USART3)},
lypinator 0:bb348c97df44 108 {NC, NC, 0}
lypinator 0:bb348c97df44 109 };
lypinator 0:bb348c97df44 110
lypinator 0:bb348c97df44 111 const PinMap PinMap_UART_CTS[] = {
lypinator 0:bb348c97df44 112 {PA_11, UART_1, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF7_USART1)},
lypinator 0:bb348c97df44 113 {PD_3, UART_2, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF7_USART2)},
lypinator 0:bb348c97df44 114 {PD_11, UART_3, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF7_USART3)},
lypinator 0:bb348c97df44 115 {NC, NC, 0}
lypinator 0:bb348c97df44 116 };
lypinator 0:bb348c97df44 117
lypinator 0:bb348c97df44 118 //*** SPI ***
lypinator 0:bb348c97df44 119
lypinator 0:bb348c97df44 120 const PinMap PinMap_SPI_MOSI[] = {
lypinator 0:bb348c97df44 121 {PE_6, SPI_4, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF5_SPI4)},
lypinator 0:bb348c97df44 122 {NC, NC, 0}
lypinator 0:bb348c97df44 123 };
lypinator 0:bb348c97df44 124
lypinator 0:bb348c97df44 125 const PinMap PinMap_SPI_MISO[] = {
lypinator 0:bb348c97df44 126 {PE_5, SPI_4, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF5_SPI4)},
lypinator 0:bb348c97df44 127 {NC, NC, 0}
lypinator 0:bb348c97df44 128 };
lypinator 0:bb348c97df44 129
lypinator 0:bb348c97df44 130 const PinMap PinMap_SPI_SCLK[] = {
lypinator 0:bb348c97df44 131 {PE_2, SPI_4, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF5_SPI4)},
lypinator 0:bb348c97df44 132 {NC, NC, 0}
lypinator 0:bb348c97df44 133 };
lypinator 0:bb348c97df44 134
lypinator 0:bb348c97df44 135 const PinMap PinMap_SPI_SSEL[] = {
lypinator 0:bb348c97df44 136 {PE_11, SPI_4, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_NOPULL, GPIO_AF5_SPI4)},
lypinator 0:bb348c97df44 137 {NC, NC, 0}
lypinator 0:bb348c97df44 138 };