Skip to content

Commit

Permalink
Merge pull request #52 from thnkslprpt/fix-8-remove-unnecessary-chara…
Browse files Browse the repository at this point in the history
…cters-in-dump-event

Fix #8, Remove unnecessary characters from memory dump event
  • Loading branch information
dzbaker authored May 25, 2023
2 parents da7ef70 + e948cdd commit df7401f
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 @@ -535,7 +535,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 df7401f

Please sign in to comment.