From ff6fce923a24c4a26164143c236e237435fe6c76 Mon Sep 17 00:00:00 2001 From: Tom Fifield Date: Sat, 22 Feb 2025 18:05:58 +0800 Subject: [PATCH] Deprecate did_gps_reset Removed in: https://github.com/meshtastic/firmware/pull/6116 --- meshtastic/deviceonly.proto | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/meshtastic/deviceonly.proto b/meshtastic/deviceonly.proto index c506137..65d4f95 100644 --- a/meshtastic/deviceonly.proto +++ b/meshtastic/deviceonly.proto @@ -205,9 +205,10 @@ message DeviceState { bool no_save = 9 [deprecated = true]; /* - * Some GPS receivers seem to have bogus settings from the factory, so we always do one factory reset. + * Previously used to manage GPS factory resets. + * Deprecated in 2.5.23 */ - bool did_gps_reset = 11; + bool did_gps_reset = 11 [deprecated = true]; /* * We keep the last received waypoint stored in the device flash, @@ -242,4 +243,4 @@ message ChannelFile { * NodeDB.cpp in the device code. */ uint32 version = 2; -} \ No newline at end of file +}