@@ -39,34 +39,34 @@ typedef struct
39
39
{
40
40
CFE_MSG_TelemetryHeader_t TlmHeader ; /**< \brief cFE SB Tlm Msg Hdr */
41
41
42
- uint8 CmdCounter ; /**< \brief CS Application Command Counter */
43
- uint8 CmdErrCounter ; /**< \brief CS Application Command Error Counter */
44
- uint8 ChecksumState ; /**< \brief CS Application global checksum state */
45
- uint8 EepromCSState ; /**< \brief CS EEPROM table checksum state */
46
- uint8 MemoryCSState ; /**< \brief CS Memory table checksum state */
47
- uint8 AppCSState ; /**< \brief CS App table checksum state */
48
- uint8 TablesCSState ; /**< \brief CS Tables table checksum state */
49
- uint8 OSCSState ; /**< \brief OS code segment checksum state */
50
- uint8 CfeCoreCSState ; /**< \brief cFE Core code segment checksum stat e*/
51
- uint8 RecomputeInProgress ; /**< \brief CS "Recompute In Progress" flag */
52
- uint8 OneShotInProgress ; /**< \brief CS "OneShot In Progress" flag */
53
- uint8 Filler8 ; /**< \brief 8 bit padding */
54
- uint16 EepromCSErrCounter ; /**< \brief EEPROM miscompare counter */
55
- uint16 MemoryCSErrCounter ; /**< \brief Memory miscompare counter */
56
- uint16 AppCSErrCounter ; /**< \brief App miscompare counter */
57
- uint16 TablesCSErrCounter ; /**< \brief Tables miscompare counter */
58
- uint16 CfeCoreCSErrCounter ; /**< \brief cFE core miscompare counter */
59
- uint16 OSCSErrCounter ; /**< \brief OS code segment miscopmare counter */
60
- uint16 CurrentCSTable ; /**< \brief Current table being checksummed */
61
- uint16 CurrentEntryInTable ; /**< \brief Current entry ID in table being checksummed */
62
- uint32 EepromBaseline ; /**< \brief Baseline checksum for all of EEPROM */
63
- uint32 OSBaseline ; /**< \brief Baseline checksum for the OS code segment */
64
- uint32 CfeCoreBaseline ; /**< \brief Basline checksum for the cFE core */
65
- cpuaddr LastOneShotAddress ; /**< \brief Address used in last one shot checksum command */
66
- uint32 LastOneShotSize ; /**< \brief Size used in the last one shot checksum command */
67
- uint32 LastOneShotMaxBytesPerCycle ; /**< \brief Max bytes per cycle for last one shot checksum command */
68
- uint32 LastOneShotChecksum ; /**< \brief Checksum of the last one shot checksum command */
69
- uint32 PassCounter ; /**< \brief Number of times CS has passed through all of its tables */
42
+ uint8 CmdCounter ; /**< \brief CS Application Command Counter */
43
+ uint8 CmdErrCounter ; /**< \brief CS Application Command Error Counter */
44
+ uint8 ChecksumState ; /**< \brief CS Application global checksum state */
45
+ uint8 EepromCSState ; /**< \brief CS EEPROM table checksum state */
46
+ uint8 MemoryCSState ; /**< \brief CS Memory table checksum state */
47
+ uint8 AppCSState ; /**< \brief CS App table checksum state */
48
+ uint8 TablesCSState ; /**< \brief CS Tables table checksum state */
49
+ uint8 OSCSState ; /**< \brief OS code segment checksum state */
50
+ uint8 CfeCoreCSState ; /**< \brief cFE Core code segment checksum stat e*/
51
+ uint8 RecomputeInProgress ; /**< \brief CS "Recompute In Progress" flag */
52
+ uint8 OneShotInProgress ; /**< \brief CS "OneShot In Progress" flag */
53
+ uint8 Filler8 ; /**< \brief 8 bit padding */
54
+ uint16 EepromCSErrCounter ; /**< \brief EEPROM miscompare counter */
55
+ uint16 MemoryCSErrCounter ; /**< \brief Memory miscompare counter */
56
+ uint16 AppCSErrCounter ; /**< \brief App miscompare counter */
57
+ uint16 TablesCSErrCounter ; /**< \brief Tables miscompare counter */
58
+ uint16 CfeCoreCSErrCounter ; /**< \brief cFE core miscompare counter */
59
+ uint16 OSCSErrCounter ; /**< \brief OS code segment miscopmare counter */
60
+ uint16 CurrentCSTable ; /**< \brief Current table being checksummed */
61
+ uint16 CurrentEntryInTable ; /**< \brief Current entry ID in table being checksummed */
62
+ uint32 EepromBaseline ; /**< \brief Baseline checksum for all of EEPROM */
63
+ uint32 OSBaseline ; /**< \brief Baseline checksum for the OS code segment */
64
+ uint32 CfeCoreBaseline ; /**< \brief Basline checksum for the cFE core */
65
+ CFE_ES_MemAddress_t LastOneShotAddress ; /**< \brief Address used in last one shot checksum command */
66
+ uint32 LastOneShotSize ; /**< \brief Size used in the last one shot checksum command */
67
+ uint32 LastOneShotMaxBytesPerCycle ; /**< \brief Max bytes per cycle for last one shot checksum command */
68
+ uint32 LastOneShotChecksum ; /**< \brief Checksum of the last one shot checksum command */
69
+ uint32 PassCounter ; /**< \brief Number of times CS has passed through all of its tables */
70
70
} CS_HkPacket_t ;
71
71
72
72
/**\}*/
@@ -98,7 +98,7 @@ typedef struct
98
98
typedef struct
99
99
{
100
100
CFE_MSG_CommandHeader_t CmdHeader ;
101
- cpuaddr Address ; /**< \brief Address to get the ID for */
101
+ CFE_ES_MemAddress_t Address ; /**< \brief Address to get the ID for */
102
102
} CS_GetEntryIDCmd_t ;
103
103
104
104
/**
@@ -145,7 +145,7 @@ typedef struct
145
145
typedef struct
146
146
{
147
147
CFE_MSG_CommandHeader_t CmdHeader ;
148
- cpuaddr Address ; /**< \brief Address to start checksum */
148
+ CFE_ES_MemAddress_t Address ; /**< \brief Address to start checksum */
149
149
uint32 Size ; /**< \brief Number of bytes to checksum */
150
150
uint32 MaxBytesPerCycle ; /**< \brief Max Number of bytes to compute per cycle. Value of Zero to use platform config
151
151
value */
0 commit comments