Skip to content

Commit

Permalink
[RTduino]更新blue-pill引脚分布 (#6400)
Browse files Browse the repository at this point in the history
* [RTduino]更新引脚分布

* update

* update readme
  • Loading branch information
liYony authored Sep 9, 2022
1 parent f35791e commit 19106eb
Show file tree
Hide file tree
Showing 4 changed files with 80 additions and 52 deletions.
69 changes: 35 additions & 34 deletions bsp/stm32/stm32f103-blue-pill/applications/arduino_pinout/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,40 +22,41 @@ Hardware Drivers Config --->

| Arduino引脚编号 | STM32引脚编号 | 5V容忍 | 备注 |
| ----------- | --------- | ---- | -------------------------------------------- |
| 0 (D0) | PB7 || |
| 1 (D1) | PB6 || |
| 2 (D2) | PB5 || PWM3-CH2(定时器3发生) |
| 3 (D3) | PB4 || PWM3-CH1(定时器3发生) |
| 4 (D4) | PB3 || PWM2-CH2(定时器2发生) |
| 5 (D5) | PA15 || PWM2-CH1(定时器2发生) |
| 6 (D6) | PA8 || |
| 7 (D7) | PB12 || |
| 8 (D8) | PC13 || |
| 9 (D9) | PC14 || |
| 10 (D10) | PC15 || |
| 11 (D11) | PA0 || |
| 12 (D12) | PB0 || PWM3-CH3(定时器3发生) |
| 13 (D13) | PB1 || PWM3-CH4(定时器3发生) |
| A0 | PA1 || ADC1-CH1 |
| A1 | PA4 || ADC1-CH4 |
| A2 | PA5 || ADC1-CH5 |
| A3 | PA6 || ADC1-CH6 |
| A4 | PA7 || ADC1-CH7 |
| A5 | -- | | 芯片内部参考电压 ADC |
| A6 | -- | | 芯片内部温度 ADC |
| -- | PB9 || I2C-SDA,被RT-Thread的I2C设备框架i2c1总线接管,不可当做普通IO |
| -- | PB8 || I2C-SCL,被RT-Thread的I2C设备框架i2c1总线接管,不可当做普通IO |
| -- | PA12 || USB-DP,被TinyUSB接管,不可当做普通IO |
| -- | PA11 || USB-DM,被TinyUSB接管,不可当做普通IO |
| -- | PA10 || UART1-RX,被RT-Thread的UART设备框架uart1接管,不可当做普通IO |
| -- | PA9 || UART1-TX,被RT-Thread的UART设备框架uart1接管,不可当做普通IO |
| -- | PA2 || UART2-TX,被RT-Thread的UART设备框架uart2接管,不可当做普通IO |
| -- | PA3 || UART2-RX,被RT-Thread的UART设备框架uart2接管,不可当做普通IO |
| -- | PB10 || UART3-TX,被RT-Thread的UART设备框架uart3接管,不可当做普通IO |
| -- | PB11 || UART3-RX,被RT-Thread的UART设备框架uart3接管,不可当做普通IO |
| -- | PB15 || SPI-MOSI,被RT-Thread的SPI设备框架spi2接管,不可当做普通IO |
| -- | PB14 || SPI-MISO,被RT-Thread的SPI设备框架spi2接管,不可当做普通IO |
| -- | PB13 || SPI-SCK ,被RT-Thread的SPI设备框架spi2接管,不可当做普通IO |
| 0 (D0) | PB7 || |
| 1 (D1) | PB6 || |
| 2 (D2) | PB5 || PWM3-CH2,默认被RT-Thread的PWM设备框架pwm3接管 |
| 3 (D3) | PB4 || PWM3-CH1,默认被RT-Thread的PWM设备框架pwm3接管 |
| 4 (D4) | PB3 || PWM2-CH2,默认被RT-Thread的PWM设备框架pwm2接管 |
| 5 (D5) | PA15 || PWM2-CH1,默认被RT-Thread的PWM设备框架pwm2接管 |
| 6 (D6) | PA8 || |
| 7 (D7) | PB12 || |
| 8 (D8) | PC13 || |
| 9 (D9) | PC14 || |
| 10 (D10) | PC15 || |
| 11 (D11) | PA0 || |
| 12 (D12) | PB0 || PWM3-CH3,默认被RT-Thread的PWM设备框架pwm3接管 |
| 13 (D13) | PB1 || PWM3-CH4,默认被RT-Thread的PWM设备框架pwm3接管 |
| 14 (D14) | PB9 || I2C-SDA,默认被RT-Thread的I2C设备框架i2c1总线接管 |
| 15 (D15) | PB8 || I2C-SCL,默认被RT-Thread的I2C设备框架i2c1总线接管 |
| 16 (D16) | PA12 || USB-DP,默认被 [TinyUSB软件包](https://github.com/RT-Thread-packages/tinyusb) 接管|
| 17 (D17) | PA11 || USB-DM,默认被 [TinyUSB软件包](https://github.com/RT-Thread-packages/tinyusb) 接管|
| 18 (D18) | PA10 || UART1-RX,默认被RT-Thread的UART设备框架uart1接管 |
| 19 (D19) | PA9 || UART1-TX,默认被RT-Thread的UART设备框架uart1接管 |
| 20 (D20) | PA2 || UART2-TX,默认被RT-Thread的UART设备框架uart2接管 |
| 21 (D21) | PA3 || UART2-RX,默认被RT-Thread的UART设备框架uart2接管 |
| 22 (D22) | PB10 || UART3-TX,默认被RT-Thread的UART设备框架uart3接管 |
| 23 (D23) | PB11 || UART3-RX,默认被RT-Thread的UART设备框架uart3接管 |
| 24 (D24) | PB15 || SPI-MOSI,默认被RT-Thread的SPI设备框架spi2接管 |
| 25 (D25) | PB14 || SPI-MISO,默认被RT-Thread的SPI设备框架spi2接管 |
| 26 (D26) | PB13 || SPI-SCK ,默认被RT-Thread的SPI设备框架spi2接管 |
| 27 (A0) | PA1 || ADC1-CH1,默认被RT-Thread的ADC设备框架adc1接管 |
| 28 (A1) | PA4 || ADC1-CH4,默认被RT-Thread的ADC设备框架adc1接管 |
| 29 (A2) | PA5 || ADC1-CH5,默认被RT-Thread的ADC设备框架adc1接管 |
| 30 (A3) | PA6 || ADC1-CH6,默认被RT-Thread的ADC设备框架adc1接管 |
| 31 (A4) | PA7 || ADC1-CH7,默认被RT-Thread的ADC设备框架adc1接管 |
| 32 (A5) | -- | | 芯片内部参考电压 ADC |
| 33 (A6) | -- | | 芯片内部温度 ADC |


> 注意:
>
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
Expand Up @@ -22,23 +22,36 @@ const pin_map_t pin_map_table[]=
{
{D0, GET_PIN(B,7)},
{D1, GET_PIN(B,6)},
{D2, GET_PIN(B,5), "pwm3", 2},/* PWM */
{D3, GET_PIN(B,4), "pwm3", 1}, /* PWM */
{D4, GET_PIN(B,3), "pwm2", 2}, /* PWM */
{D2, GET_PIN(B,5), "pwm3", 2}, /* PWM */
{D3, GET_PIN(B,4), "pwm3", 1}, /* PWM */
{D4, GET_PIN(B,3), "pwm2", 2}, /* PWM */
{D5, GET_PIN(A,15), "pwm2", 1}, /* PWM */
{D6, GET_PIN(A,8)},
{D7, GET_PIN(B,12)},
{D8, GET_PIN(C,13)}, /* LED_BUILTIN */
{D8, GET_PIN(C,13)}, /* LED_BUILTIN */
{D9, GET_PIN(C,14)},
{D10, GET_PIN(C,15)},
{D11, GET_PIN(A,0)},
{D12, GET_PIN(B,0), "pwm3", 3}, /* PWM */
{D13, GET_PIN(B,1), "pwm3", 4}, /* PWM */
{A0, GET_PIN(A,1), "adc1", 1}, /* ADC */
{A1, GET_PIN(A,4), "adc1", 4}, /* ADC */
{A2, GET_PIN(A,5), "adc1", 5}, /* ADC */
{A3, GET_PIN(A,6), "adc1", 6}, /* ADC */
{A4, GET_PIN(A,7), "adc1", 7}, /* ADC */
{A5, RT_NULL, "adc1", 17}, /* ADC, On-Chip: internal reference voltage, ADC_CHANNEL_VREFINT */
{A6, RT_NULL, "adc1", 16} /* ADC, On-Chip: internal temperature sensor, ADC_CHANNEL_TEMPSENSOR */
{D14, GET_PIN(B,9), "i2c1"}, /* I2C (Wire) */
{D15, GET_PIN(B,8), "i2c1"}, /* I2C (Wire) */
{D16, GET_PIN(A,12), "usb"}, /* SerialUSB */
{D17, GET_PIN(A,11), "usb"}, /* SerialUSB */
{D18, GET_PIN(A,10), "uart1"}, /* Serial */
{D19, GET_PIN(A,9), "uart1"}, /* Serial */
{D20, GET_PIN(A,2), "uart2"}, /* Serial2 */
{D21, GET_PIN(A,3), "uart2"}, /* Serial2 */
{D22, GET_PIN(B,10), "uart3"}, /* Serial3 */
{D23, GET_PIN(B,11), "uart3"}, /* Serial3 */
{D24, GET_PIN(B,15), "spi2"}, /* SPI */
{D25, GET_PIN(B,14), "spi2"}, /* SPI */
{D26, GET_PIN(B,13), "spi2"}, /* SPI */
{A0, GET_PIN(A,1), "adc1", 1}, /* ADC */
{A1, GET_PIN(A,4), "adc1", 4}, /* ADC */
{A2, GET_PIN(A,5), "adc1", 5}, /* ADC */
{A3, GET_PIN(A,6), "adc1", 6}, /* ADC */
{A4, GET_PIN(A,7), "adc1", 7}, /* ADC */
{A5, RT_NULL, "adc1", 17}, /* ADC, On-Chip: internal reference voltage, ADC_CHANNEL_VREFINT */
{A6, RT_NULL, "adc1", 16} /* ADC, On-Chip: internal temperature sensor, ADC_CHANNEL_TEMPSENSOR */
};
Original file line number Diff line number Diff line change
Expand Up @@ -26,13 +26,26 @@
#define D11 (11)
#define D12 (12)
#define D13 (13)
#define A0 (14)
#define A1 (15)
#define A2 (16)
#define A3 (17)
#define A4 (18)
#define A5 (19)
#define A6 (20)
#define D14 (14)
#define D15 (15)
#define D16 (16)
#define D17 (17)
#define D18 (18)
#define D19 (19)
#define D20 (20)
#define D21 (21)
#define D22 (22)
#define D23 (23)
#define D24 (24)
#define D25 (25)
#define D26 (26)
#define A0 (27)
#define A1 (28)
#define A2 (29)
#define A3 (30)
#define A4 (31)
#define A5 (32)
#define A6 (33)

#define F_CPU 72000000L /* CPU: 72MHz */
#define LED_BUILTIN D8 /* Default Built-in LED */
Expand All @@ -52,6 +65,7 @@
/*
* spi2 - PB13-SCK PB14-MISO PB15-MOSI
*/
#define SS D7 /* Chip select pin of default spi */
#define RTDUINO_DEFAULT_SPI_BUS_NAME "spi2"

#endif /* Pins_Arduino_h */

0 comments on commit 19106eb

Please sign in to comment.