From 34a1b963a56cb3805a223b4ceebd3c8a407420ea Mon Sep 17 00:00:00 2001 From: Sacha Weatherstone Date: Fri, 13 May 2022 10:40:46 +1000 Subject: [PATCH] Remove battery_level from position flags --- config.proto | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/config.proto b/config.proto index 7653963..8e99c65 100644 --- a/config.proto +++ b/config.proto @@ -122,25 +122,20 @@ message Config { */ POS_HVDOP = 0x0010; - /* - * Include battery level - */ - POS_BATTERY = 0x0020; - /* * Include number of "satellites in view" */ - POS_SATINVIEW = 0x0040; + POS_SATINVIEW = 0x0020; /* * Include a sequence number incremented per packet */ - POS_SEQ_NOS = 0x0080; + POS_SEQ_NOS = 0x0040; /* * Include positional timestamp (from GPS solution) */ - POS_TIMESTAMP = 0x0100; + POS_TIMESTAMP = 0x0080; } /*