Skip to content

Commit

Permalink
Reorder GPSPowerState enum
Browse files Browse the repository at this point in the history
Possibly more intuitive when reading logs
  • Loading branch information
todd-herbert committed Jun 5, 2024
1 parent de22c57 commit 7017423
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/gps/GPS.h
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,9 @@ typedef enum {
} GPS_RESPONSE;

enum GPSPowerState : uint8_t {
GPS_OFF,
GPS_STANDBY,
GPS_AWAKE,
GPS_OFF = 0,
GPS_AWAKE = 1,
GPS_STANDBY = 2,
};

// Generate a string representation of DOP
Expand Down

0 comments on commit 7017423

Please sign in to comment.