From fd6e3ce6bebc5246170c6aaed63f7e47e7009081 Mon Sep 17 00:00:00 2001 From: Carlos Pereira Atencio Date: Tue, 6 Aug 2024 16:45:32 +0100 Subject: [PATCH] codal_app: Update codal-microbit-v2 to v0.2.67. Removed workaround needed before CODAL set the uBit.io.logo touch mode to capacitive by default. Discussion: https://github.com/microbit-foundation/micropython-microbit-v2/issues/168 CODAL changelog: https://github.com/lancaster-university/codal-microbit-v2/blob/master/Changelog.md#v0267 --- src/codal_app/codal.json | 2 +- src/codal_app/main.cpp | 3 --- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/src/codal_app/codal.json b/src/codal_app/codal.json index f1d9977..9444ac5 100644 --- a/src/codal_app/codal.json +++ b/src/codal_app/codal.json @@ -2,7 +2,7 @@ "target": { "name": "codal-microbit-v2", "url": "https://github.com/lancaster-university/codal-microbit-v2", - "branch": "v0.2.66", + "branch": "v0.2.67", "type": "git", "test_ignore": true } , diff --git a/src/codal_app/main.cpp b/src/codal_app/main.cpp index 09c89f7..00e91a9 100644 --- a/src/codal_app/main.cpp +++ b/src/codal_app/main.cpp @@ -75,9 +75,6 @@ int main() { uBit.audio.setSpeakerEnabled(true); uBit.audio.setPinEnabled(false); - // Initialise the logo pin in capacitive touch mode. - uBit.io.logo.isTouched(TouchMode::Capacitative); - mp_main(); return 0; }