samd/boards/SEEED_WIO_TERMINAL: Rename two pins starting with a digit.

So the names don't start with a digit, which isn't allowed in Python.

Signed-off-by: robert-hh <robert@hammelrath.com>
This commit is contained in:
robert-hh 2023-05-05 20:46:32 +02:00 committed by Damien George
parent 47fa723586
commit 984456731b
1 changed files with 2 additions and 2 deletions

View File

@ -20,8 +20,8 @@ PIN_PD20,SWITCH_U
PIN_PC26,BUTTON_1
PIN_PC27,BUTTON_2
PIN_PC28,BUTTON_3
PIN_PC14,5V_ENABLE
PIN_PC15,3V3_ENABLE
PIN_PC14,ENABLE_5V
PIN_PC15,ENABLE_3V3
PIN_PB26,TX
PIN_PB27,RX
PIN_PA13,SDA0

1 # Pin rows contain Pin number and pin name.
20 PIN_PC27,BUTTON_2
21 PIN_PC28,BUTTON_3
22 PIN_PC14,5V_ENABLE PIN_PC14,ENABLE_5V
23 PIN_PC15,3V3_ENABLE PIN_PC15,ENABLE_3V3
24 PIN_PB26,TX
25 PIN_PB27,RX
26 PIN_PA13,SDA0
27 PIN_PA12,SCL0