Skip to content

Commit eb139c9

Browse files
committed
Correct pins to not reset.
They must have the PORT_ prefix otherwise they mask the wrong pins. Fixes #3552
1 parent f0b3731 commit eb139c9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ports/atmel-samd/boards/matrixportal_m4/mpconfigboard.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
// These are pins not to reset.
1111
// QSPI Data pins, PA23 is NeoPixel
12-
#define MICROPY_PORT_A (PORT_PA08 | PORT_PA09 | PORT_PA10 | PORT_PA11 | PA23)
12+
#define MICROPY_PORT_A (PORT_PA08 | PORT_PA09 | PORT_PA10 | PORT_PA11 | PORT_PA23)
1313
// QSPI CS, QSPI SCK
1414
#define MICROPY_PORT_B (PORT_PB10 | PORT_PB11)
1515
#define MICROPY_PORT_C (0)

0 commit comments

Comments
 (0)