diff options
| author | Kevin Banks <kevin@firia.com> | 2021-01-26 18:18:39 -0600 |
|---|---|---|
| committer | Kevin Banks <kevin@firia.com> | 2021-01-26 18:18:39 -0600 |
| commit | b152c658e2538f2e2cb6c760c4b4dab6bb6cf357 (patch) | |
| tree | f5d2a965db5e3ae8d99a9acc8f431b5adedd7118 | |
| parent | fbfb7b68cce3fbcccc423c1013c0c3cabe6a89d0 (diff) | |
Making WebUSB default to off (build unbreakage, caught by CI)
| -rw-r--r-- | py/circuitpy_mpconfig.mk | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/py/circuitpy_mpconfig.mk b/py/circuitpy_mpconfig.mk index 6e721e1bc..538d50e94 100644 --- a/py/circuitpy_mpconfig.mk +++ b/py/circuitpy_mpconfig.mk @@ -270,7 +270,10 @@ CFLAGS += -DCIRCUITPY_USB_HID=$(CIRCUITPY_USB_HID) CIRCUITPY_USB_MIDI ?= 1 CFLAGS += -DCIRCUITPY_USB_MIDI=$(CIRCUITPY_USB_MIDI) -CIRCUITPY_USB_VENDOR ?= 1 +# Defaulting this to OFF initially because it has only been tested on a +# limited number of platforms, and the other platforms do not have this +# setting in their mpconfigport.mk and/or mpconfigboard.mk files yet. +CIRCUITPY_USB_VENDOR ?= 0 CFLAGS += -DCIRCUITPY_USB_VENDOR=$(CIRCUITPY_USB_VENDOR) CIRCUITPY_PEW ?= 0 |
