From 6582bae0f217307a0d71dc30bc78f214e7957b28 Mon Sep 17 00:00:00 2001 From: Torrie Fischer Date: Sat, 23 Dec 2023 11:15:46 +0100 Subject: [PATCH] platform: esp32: disable bluetooth serial for now --- src/platform/arduino/esp32/BluetoothSerialTelemetry.cpp | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/src/platform/arduino/esp32/BluetoothSerialTelemetry.cpp b/src/platform/arduino/esp32/BluetoothSerialTelemetry.cpp index b92a16b..99e7aeb 100644 --- a/src/platform/arduino/esp32/BluetoothSerialTelemetry.cpp +++ b/src/platform/arduino/esp32/BluetoothSerialTelemetry.cpp @@ -1,8 +1,9 @@ +#if 0 #include "BluetoothSerialTelemetry.h" -#include "../../Static.h" -#include "../../Platform.h" +#include "../../../Static.h" +#include "../../../Platform.h" #include -#include "../../inputs/Buttons.h" +#include "../../../inputs/Buttons.h" #include @@ -91,3 +92,4 @@ BluetoothSerialTelemetry::onStart() STATIC_ALLOC(BluetoothSerialTelemetry); STATIC_TASK(BluetoothSerialTelemetry); +#endif