Skip to content

Commit b1c428a

Browse files
committed
Disable touchio on RP2350
It doesn't work due to the E9 errata on A2 hardware. Fixes #9541
1 parent b3e458c commit b1c428a

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

ports/raspberrypi/mpconfigport.mk

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,13 +51,19 @@ CIRCUITPY_ALARM ?= 1
5151

5252
# Default PICODVI off because it uses RAM to store code run on the second CPU for RP2040.
5353
CIRCUITPY_PICODVI ?= 0
54+
55+
CIRCUITPY_TOUCHIO ?= 1
5456
endif
5557

5658
ifeq ($(CHIP_VARIANT),RP2350)
5759
# This needs to be implemented.
58-
CIRCUITPY_ALARM ?= 0
60+
CIRCUITPY_ALARM = 0
5961
# Default PICODVI on because it doesn't require much code in RAM to talk to HSTX.
6062
CIRCUITPY_PICODVI ?= 1
63+
64+
# Our generic touchio uses a pull down and RP2350 A2 hardware doesn't work correctly.
65+
# So, turn touchio off because it doesn't work.
66+
CIRCUITPY_TOUCHIO = 0
6167
endif
6268

6369
INTERNAL_LIBM = 1

0 commit comments

Comments
 (0)