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();