summaryrefslogtreecommitdiff
path: root/py
diff options
context:
space:
mode:
authorDan Halbert <halbert@adafruit.com>2020-02-20 15:57:38 -0500
committerGitHub <noreply@github.com>2020-02-20 15:57:38 -0500
commit0afb8991fa05ef2074b2af13d0fee8f2cb515f01 (patch)
treebd32f75dffc3c590ee5c75e163f5c49a1a290623 /py
parent1e7ec1b9529bf05a00613beb72bdd2dadb82a9db (diff)
parente8f71415644846ca0f4195afcad4a9e8b2469ded (diff)
Merge pull request #2644 from tannewt/disable_ble_file_service
Disable BLE file service for now
Diffstat (limited to 'py')
-rw-r--r--py/circuitpy_mpconfig.mk5
1 files changed, 5 insertions, 0 deletions
diff --git a/py/circuitpy_mpconfig.mk b/py/circuitpy_mpconfig.mk
index 93e5982d5..d6e033daf 100644
--- a/py/circuitpy_mpconfig.mk
+++ b/py/circuitpy_mpconfig.mk
@@ -328,6 +328,11 @@ CIRCUITPY_SERIAL_BLE = 0
endif
CFLAGS += -DCIRCUITPY_SERIAL_BLE=$(CIRCUITPY_SERIAL_BLE)
+ifndef CIRCUITPY_BLE_FILE_SERVICE
+CIRCUITPY_BLE_FILE_SERVICE = 0
+endif
+CFLAGS += -DCIRCUITPY_BLE_FILE_SERVICE=$(CIRCUITPY_BLE_FILE_SERVICE)
+
# REPL over UART
ifndef CIRCUITPY_SERIAL_UART
CIRCUITPY_SERIAL_UART = 0