File tree Expand file tree Collapse file tree 1 file changed +10
-14
lines changed
Expand file tree Collapse file tree 1 file changed +10
-14
lines changed Original file line number Diff line number Diff line change @@ -17,28 +17,24 @@ endif
1717# All raspberrypi ports have longints.
1818LONGINT_IMPL = MPZ
1919
20- ifndef CIRCUITPY_RP2PIO
21- CIRCUITPY_RP2PIO = 1
22- else
23- CIRCUITPY_NEOPIXEL_WRITE = 0
24- endif
25-
26- CIRCUITPY_FRAMEBUFFERIO = 1
27- CIRCUITPY_FULL_BUILD = 1
20+ CIRCUITPY_RP2PIO ?= 1
21+ CIRCUITPY_NEOPIXEL_WRITE ?= $(CIRCUITPY_RP2PIO )
22+ CIRCUITPY_FRAMEBUFFERIO ?= 1
23+ CIRCUITPY_FULL_BUILD ?= 1
2824CIRCUITPY_AUDIOMP3 ?= 1
29- CIRCUITPY_BITOPS = 1
30- CIRCUITPY_PWMIO = 1
31- CIRCUITPY_RGBMATRIX = 1
32- CIRCUITPY_ROTARYIO = 1
25+ CIRCUITPY_BITOPS ? = 1
26+ CIRCUITPY_PWMIO ? = 1
27+ CIRCUITPY_RGBMATRIX ? = 1
28+ CIRCUITPY_ROTARYIO ? = 1
3329
3430# Things that need to be implemented.
3531# Use PWM interally
3632CIRCUITPY_FREQUENCYIO = 0
3733CIRCUITPY_I2CPERIPHERAL = 0
3834CIRCUITPY_NVM = 1
3935# Use PIO interally
40- CIRCUITPY_PULSEIO = 1
41- CIRCUITPY_WATCHDOG = 1
36+ CIRCUITPY_PULSEIO ? = 1
37+ CIRCUITPY_WATCHDOG ? = 1
4238
4339# Audio via PWM
4440CIRCUITPY_AUDIOIO = 0
You can’t perform that action at this time.
0 commit comments