Skip to content

Commit

Permalink
Fix #8, Remove unnecessary characters from memory dump event
Browse files Browse the repository at this point in the history
  • Loading branch information
thnkslprpt committed Apr 22, 2023
1 parent 823599a commit e948cdd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion fsw/src/mm_dump.c
Original file line number Diff line number Diff line change
Expand Up @@ -530,7 +530,7 @@ bool MM_DumpInEventCmd(const CFE_SB_Buffer_t *BufPtr)
BytePtr = (uint8 *)DumpBuffer;
for (i = 0; i < CmdPtr->NumOfBytes; i++)
{
snprintf(TempString, MM_DUMPINEVENT_TEMP_CHARS, "0x%02X ", *BytePtr);
snprintf(TempString, MM_DUMPINEVENT_TEMP_CHARS, "%02X ", *BytePtr);
CFE_SB_MessageStringGet(&EventString[EventStringTotalLength], TempString, NULL,
sizeof(EventString) - EventStringTotalLength, sizeof(TempString));
EventStringTotalLength = strlen(EventString);
Expand Down
4 changes: 2 additions & 2 deletions fsw/src/mm_dump.h
Original file line number Diff line number Diff line change
Expand Up @@ -44,10 +44,10 @@
*
* The event message format is:
* Message head "Memory Dump: " 13 characters
* Message body "0xFF " 5 characters per dump byte
* Message body "FF" 2 characters per dump byte
* Message tail "from address: 0xFFFFFFFF" 33 characters including NUL on 64-bit system
*/
#define MM_MAX_DUMP_INEVENT_BYTES ((CFE_MISSION_EVS_MAX_MESSAGE_LENGTH - (13 + 33)) / 5)
#define MM_MAX_DUMP_INEVENT_BYTES ((CFE_MISSION_EVS_MAX_MESSAGE_LENGTH - (13 + 33)) / 2)

/**
* \brief Dump in an event scratch string size
Expand Down

0 comments on commit e948cdd

Please sign in to comment.