Skip to content

Commit

Permalink
Remove battery_level from position flags
Browse files Browse the repository at this point in the history
  • Loading branch information
sachaw committed May 13, 2022
1 parent f6606ac commit 34a1b96
Showing 1 changed file with 3 additions and 8 deletions.
11 changes: 3 additions & 8 deletions config.proto
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}

/*
Expand Down

0 comments on commit 34a1b96

Please sign in to comment.