Skip to content

Commit

Permalink
Disable touchio on RP2350
Browse files Browse the repository at this point in the history
It doesn't work due to the E9 errata on A2 hardware.

Fixes #9541
  • Loading branch information
tannewt committed Sep 12, 2024
1 parent b3e458c commit b1c428a
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion ports/raspberrypi/mpconfigport.mk
Original file line number Diff line number Diff line change
Expand Up @@ -51,13 +51,19 @@ CIRCUITPY_ALARM ?= 1

# Default PICODVI off because it uses RAM to store code run on the second CPU for RP2040.
CIRCUITPY_PICODVI ?= 0

CIRCUITPY_TOUCHIO ?= 1
endif

ifeq ($(CHIP_VARIANT),RP2350)
# This needs to be implemented.
CIRCUITPY_ALARM ?= 0
CIRCUITPY_ALARM = 0
# Default PICODVI on because it doesn't require much code in RAM to talk to HSTX.
CIRCUITPY_PICODVI ?= 1

# Our generic touchio uses a pull down and RP2350 A2 hardware doesn't work correctly.
# So, turn touchio off because it doesn't work.
CIRCUITPY_TOUCHIO = 0
endif

INTERNAL_LIBM = 1
Expand Down

0 comments on commit b1c428a

Please sign in to comment.