We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b3e458c commit b1c428aCopy full SHA for b1c428a
ports/raspberrypi/mpconfigport.mk
@@ -51,13 +51,19 @@ CIRCUITPY_ALARM ?= 1
51
52
# Default PICODVI off because it uses RAM to store code run on the second CPU for RP2040.
53
CIRCUITPY_PICODVI ?= 0
54
+
55
+CIRCUITPY_TOUCHIO ?= 1
56
endif
57
58
ifeq ($(CHIP_VARIANT),RP2350)
59
# This needs to be implemented.
-CIRCUITPY_ALARM ?= 0
60
+CIRCUITPY_ALARM = 0
61
# Default PICODVI on because it doesn't require much code in RAM to talk to HSTX.
62
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
67
68
69
INTERNAL_LIBM = 1
0 commit comments