Skip to content

Commit 6edc9e5

Browse files
committed
Fix typo in PICO_PORT_DIGITAL_CHANNEL enum
A missing comma in the list caused the strings PICO_PORT_DIGITAL_CHANNEL4 and PICO_PORT_DIGITAL_CHANNEL5 to be merged. Resulting in the enum not working properly.
1 parent 97c73f0 commit 6edc9e5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

picosdk/PicoDeviceEnums.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ def _define_channel_flags():
7878
"PICO_PORT_DIGITAL_CHANNEL1",
7979
"PICO_PORT_DIGITAL_CHANNEL2",
8080
"PICO_PORT_DIGITAL_CHANNEL3",
81-
"PICO_PORT_DIGITAL_CHANNEL4"
81+
"PICO_PORT_DIGITAL_CHANNEL4",
8282
"PICO_PORT_DIGITAL_CHANNEL5",
8383
"PICO_PORT_DIGITAL_CHANNEL6",
8484
"PICO_PORT_DIGITAL_CHANNEL7",

0 commit comments

Comments
 (0)