From b267b4d1da196e4f6f3cb582c434e833655259d7 Mon Sep 17 00:00:00 2001 From: Carlos Pereira Atencio Date: Wed, 8 Nov 2023 11:36:34 +0000 Subject: [PATCH] datalogger: Change flags from CODAL-only to both DAL and CODAL, due to issue #5352. Due to issue https://github.com/microsoft/pxt-microbit/issues/5352 the flags set up only for CODAL don't work correctly. The issue will be fixed in the future, but as a workaround we can set the flag for both DAL and CODAL, even if this is a V2 only feature. Also removes the user config switch, as it didn't work and we prefer having less options. The flag can always be manually changes in the pxt.json file. --- libs/datalogger/pxt.json | 19 +++---------------- 1 file changed, 3 insertions(+), 16 deletions(-) diff --git a/libs/datalogger/pxt.json b/libs/datalogger/pxt.json index 2bdc32704a4..b42faa0081d 100644 --- a/libs/datalogger/pxt.json +++ b/libs/datalogger/pxt.json @@ -14,21 +14,8 @@ }, "yotta": { "config": { - "codal": { - "MICROBIT_BLE_UTILITY_SERVICE": 1, - "MICROBIT_BLE_UTILITY_SERVICE_PAIRING": 1 - } - }, - "userConfigs": [ - { - "description": "Disable Bluetooth Utility Service", - "config": { - "codal": { - "MICROBIT_BLE_UTILITY_SERVICE": 0, - "MICROBIT_BLE_UTILITY_SERVICE_PAIRING": 0 - } - } - } - ] + "MICROBIT_BLE_UTILITY_SERVICE": 1, + "MICROBIT_BLE_UTILITY_SERVICE_PAIRING": 1 + } } } \ No newline at end of file