Skip to content

Commit

Permalink
make enum easier to use
Browse files Browse the repository at this point in the history
  • Loading branch information
tmcd249 committed Jan 9, 2025
1 parent d3ef0d5 commit 252596a
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions src/data_sets.h
Original file line number Diff line number Diff line change
Expand Up @@ -4578,19 +4578,19 @@ enum eGPXHdwStatusFlags
};

typedef enum {
cxdRst_PowerOn = 0,
cxdRst_Watchdog,
cxdRst_ErrOpCode,
cxdRst_ErrOpCode_FW,
cxdRst_ErrOpCode_init,
cxdRst_UserRequested,
cxdRst_FWUpdate,
cxdRst_SysCmd,
cxdRst_InitTimeout,
cxdRst_Status5,
cxdRst_StatusNot0,
cxdRst_flashUpdate,
cxdRst_RTKEphMissing,
cxdRst_PowerOn = 0,
cxdRst_Watchdog = 1,
cxdRst_ErrOpCode = 2,
cxdRst_ErrOpCode_FW = 3,
cxdRst_ErrOpCode_init = 4,
cxdRst_UserRequested = 5,
cxdRst_FWUpdate = 6,
cxdRst_SysCmd = 7,
cxdRst_InitTimeout = 8,
cxdRst_Status5 = 9,
cxdRst_StatusNot0 = 10,
cxdRst_flashUpdate = 11,
cxdRst_RTKEphMissing = 12,
cxdRst_Max
} eGNSSDriverRstCause;

Expand Down

0 comments on commit 252596a

Please sign in to comment.