From 6fa9a50762a15a86c1c04e4a6f0cc74f1ad63532 Mon Sep 17 00:00:00 2001 From: Peli de Halleux Date: Fri, 12 Jan 2024 16:07:03 +0000 Subject: [PATCH] disable ble, always --- pxt.json | 30 ++++++++++++++++-------------- 1 file changed, 16 insertions(+), 14 deletions(-) diff --git a/pxt.json b/pxt.json index 614dd6b77..29c556d44 100644 --- a/pxt.json +++ b/pxt.json @@ -65,10 +65,7 @@ "version.ts", "button/button-smasher.md" ], - "testFiles": [ - "test.microbit.ts", - "test.ts" - ], + "testFiles": ["test.microbit.ts", "test.ts"], "testDependencies": {}, "fileDependencies": { "mbcompat.ts": "target:microbit || target:calliopemini", @@ -85,16 +82,9 @@ "target": "4.0.11", "targetId": "microbit" }, - "supportedTargets": [ - "arcade", - "maker", - "microbit", - "calliopemini" - ], + "supportedTargets": ["arcade", "maker", "microbit", "calliopemini"], "preferredEditor": "tsprj", - "disablesVariants": [ - "mbdal" - ], + "disablesVariants": ["mbdal"], "binaryonly": true, "extension": { "namespace": "modules", @@ -106,7 +96,19 @@ "yotta": { "config": { "JACDAC_WEBUSB": 1, - "JACDAC_SWS_TRANSPORT": 1 + "JACDAC_SWS_TRANSPORT": 1, + "microbit-dal": { + "bluetooth": { + "enabled": 0 + } + }, + "optionalConfig": { + "microbit-dal": { + "bluetooth": { + "enabled": 0 + } + } + } } } }