Correct pins to not reset.
They must have the PORT_ prefix otherwise they mask the wrong pins. Fixes #3552
This commit is contained in:
parent
f0b37313c5
commit
eb139c9bab
@ -9,7 +9,7 @@
|
|||||||
|
|
||||||
// These are pins not to reset.
|
// These are pins not to reset.
|
||||||
// QSPI Data pins, PA23 is NeoPixel
|
// QSPI Data pins, PA23 is NeoPixel
|
||||||
#define MICROPY_PORT_A (PORT_PA08 | PORT_PA09 | PORT_PA10 | PORT_PA11 | PA23)
|
#define MICROPY_PORT_A (PORT_PA08 | PORT_PA09 | PORT_PA10 | PORT_PA11 | PORT_PA23)
|
||||||
// QSPI CS, QSPI SCK
|
// QSPI CS, QSPI SCK
|
||||||
#define MICROPY_PORT_B (PORT_PB10 | PORT_PB11)
|
#define MICROPY_PORT_B (PORT_PB10 | PORT_PB11)
|
||||||
#define MICROPY_PORT_C (0)
|
#define MICROPY_PORT_C (0)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user