From d647be73dfb099334756c4f3a0c7e1dec9d14579 Mon Sep 17 00:00:00 2001 From: geeksville Date: Tue, 24 Mar 2020 15:16:32 -0700 Subject: [PATCH] oops nasty bug probably responsible for ble mutex seeming bugs #33 Was calling the wrong superclass method and therfore not properly populating radio --- src/MeshBluetoothService.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/MeshBluetoothService.cpp b/src/MeshBluetoothService.cpp index d65df83b..e60380ff 100644 --- a/src/MeshBluetoothService.cpp +++ b/src/MeshBluetoothService.cpp @@ -111,7 +111,7 @@ class RadioCharacteristic : public ProtobufCharacteristic // update gps connection state devicestate.has_radio = gps.isConnected; - BLEKeepAliveCallbacks::onRead(c); + ProtobufCharacteristic::onRead(c); } void onWrite(BLECharacteristic *c)