summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKevin Banks <kevin@firia.com>2021-02-01 17:56:38 -0600
committerKevin Banks <kevin@firia.com>2021-02-01 17:56:38 -0600
commite1618c21b20e82f2259118cd1baf67f6954b92ef (patch)
treea4e2f4a609003d2bab4c24489f8659e391a949b7
parent63f9b12fe61c9df6e993f92d7cfef1038523d930 (diff)
Default WebUSB to OFF because other ports are not ready for it yet
-rw-r--r--ports/esp32s2/mpconfigport.mk6
1 files changed, 3 insertions, 3 deletions
diff --git a/ports/esp32s2/mpconfigport.mk b/ports/esp32s2/mpconfigport.mk
index 7dcd3355f..b273c02ee 100644
--- a/ports/esp32s2/mpconfigport.mk
+++ b/ports/esp32s2/mpconfigport.mk
@@ -29,10 +29,10 @@ CIRCUITPY_I2CPERIPHERAL = 0
CIRCUITPY_ROTARYIO = 1
CIRCUITPY_NVM = 1
# We don't have enough endpoints to include MIDI.
-CIRCUITPY_USB_MIDI = 0
-CIRCUITPY_USB_HID = 0
+CIRCUITPY_USB_MIDI ?= 0
+CIRCUITPY_USB_HID ?= 1
# We have borrowed the VENDOR nomenclature from tinyusb. VENDOR AKA WEBUSB
-CIRCUITPY_USB_VENDOR = 1
+CIRCUITPY_USB_VENDOR ?= 0
CIRCUITPY_WIFI = 1
CIRCUITPY_WATCHDOG ?= 1
CIRCUITPY_ESPIDF = 1