From 1cf6bfd0ee72b78a8b0725adf2bd20b4f3881e47 Mon Sep 17 00:00:00 2001 From: richonguzman Date: Sun, 3 Dec 2023 10:19:11 -0300 Subject: [PATCH] code cleaning --- data/tracker_config.json | 3 ++- src/configuration.h | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/data/tracker_config.json b/data/tracker_config.json index 480a911..b1a3848 100644 --- a/data/tracker_config.json +++ b/data/tracker_config.json @@ -72,7 +72,8 @@ "standingUpdateTime": 15, "sendAltitude": true, "sendBatteryInfo": false, - "bluetooth": true, + "bluetoothType": 0, + "bluetoothActive": true, "disableGPS": false }, "pttTrigger": { diff --git a/src/configuration.h b/src/configuration.h index 4c317a1..f7b457a 100644 --- a/src/configuration.h +++ b/src/configuration.h @@ -85,7 +85,8 @@ public: int standingUpdateTime; bool sendAltitude; bool sendBatteryInfo; - bool bluetooth; + int bluetoothType; + bool bluetoothActive; bool disableGPS; Configuration();