/* * Copyright (c) 2006-2022, RT-Thread Development Team * * SPDX-License-Identifier: Apache-2.0 * * Change Logs: * Date Author Notes * 2021-12-10 Meco Man first version */ #include #include #include "pins_arduino.h" /* {Arduino Pin, RT-Thread Pin [, Device Name(PWM or ADC), Channel]} [] means optional Digital pins must NOT give the device name and channel. Analog pins MUST give the device name and channel(ADC, PWM or DAC). Arduino Pin must keep in sequence. */ const pin_map_t pin_map_table[]= { {D0}, /* RX */ {D1}, /* TX */ {D2, GET_PIN(B,9)}, {D3, GET_PIN(D,15), "pwm4", 4}, /* PWM */ {D4, GET_PIN(A,8)}, {D5, GET_PIN(D,14)}, {D6, GET_PIN(B,11), "pwm2", 4}, /* PWM */ {D7, GET_PIN(B,14)}, {D8, GET_PIN(B,12)}, {D9, GET_PIN(D,12), "pwm4", 1}, /* PWM */ {D10, GET_PIN(B,10), "pwm2", 3}, /* PWM */ {D11, GET_PIN(B,8), "pwm4", 3}, /* PWM */ {D12, GET_PIN(B,15)}, {D13, GET_PIN(B,13)}, {D14, GET_PIN(A,1)}, /* BSP: MOTOR-A */ {D15, GET_PIN(A,0)}, /* BSP: MOTOR-B */ {D16, GET_PIN(B,2)}, /* BSP: BEEP */ {D17, GET_PIN(D,10)}, /* BSP: KEY0 */ {D18, GET_PIN(D,9)}, /* BSP: KEY1 */ {D19, GET_PIN(D,8)}, /* BSP: KEY2 */ {D20, GET_PIN(C,13)}, /* BSP: KEY-WKUP */ {D21, GET_PIN(E,7)}, /* BSP: RED-LED */ {D22, GET_PIN(E,8)}, /* LED_BUILTIN, BSP: GREEN-LED */ {D23, GET_PIN(E,9), "pwm1", 1}, /* PWM, BSP: BLUE-LED */ {D24, GET_PIN(B,0)}, /* INFRARED EMISSION */ {D25, GET_PIN(B,1)}, /* INFRARED RECEPTION */ {A0, GET_PIN(C,2), "adc1", 3}, /* ADC */ {A1, GET_PIN(C,4), "adc1", 13}, /* ADC */ {A2, RT_NULL, "adc1", 0}, /* ADC, On-Chip: internal reference voltage, ADC_CHANNEL_VREFINT */ {A3, RT_NULL, "adc1", 17}, /* ADC, On-Chip: internal temperature sensor, ADC_CHANNEL_TEMPSENSOR */ {DAC0, GET_PIN(A,4), "dac1", 1} /* DAC */ };