@@ -267,7 +267,7 @@ int32 DS_AppInitialize(void)
267
267
*/
268
268
if (Result == CFE_SUCCESS )
269
269
{
270
- CFE_EVS_SendEvent (DS_INIT_EID , CFE_EVS_EventType_INFORMATION ,
270
+ CFE_EVS_SendEvent (DS_INIT_INF_EID , CFE_EVS_EventType_INFORMATION ,
271
271
"Application initialized, version %d.%d.%d.%d, data at %p" , DS_MAJOR_VERSION ,
272
272
DS_MINOR_VERSION , DS_REVISION , DS_MISSION_REV , (void * )& DS_AppData );
273
273
}
@@ -311,7 +311,7 @@ void DS_AppProcessMsg(const CFE_SB_Buffer_t *BufPtr)
311
311
ExpectedLength = sizeof (DS_NoopCmd_t );
312
312
if (ExpectedLength != ActualLength )
313
313
{
314
- CFE_EVS_SendEvent (DS_HK_REQUEST_ERR_EID , CFE_EVS_EventType_ERROR ,
314
+ CFE_EVS_SendEvent (DS_HKREQ_LEN_ERR_EID , CFE_EVS_EventType_ERROR ,
315
315
"Invalid HK request length: expected = %d, actual = %d" , (int )ExpectedLength ,
316
316
(int )ActualLength );
317
317
}
@@ -478,8 +478,8 @@ void DS_AppProcessCmd(const CFE_SB_Buffer_t *BufPtr)
478
478
** DS application command with unknown command code...
479
479
*/
480
480
default :
481
- CFE_EVS_SendEvent (DS_CMD_CODE_ERR_EID , CFE_EVS_EventType_ERROR ,
482
- "Invalid command code: MID = 0x%08X, CC = %d" , DS_CMD_MID , CommandCode );
481
+ CFE_EVS_SendEvent (DS_CC_ERR_EID , CFE_EVS_EventType_ERROR , "Invalid command code: MID = 0x%08X, CC = %d" ,
482
+ DS_CMD_MID , CommandCode );
483
483
484
484
DS_AppData .CmdRejectedCounter ++ ;
485
485
break ;
0 commit comments