Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 3 additions & 4 deletions fsw/inc/mm_perfids.h
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,9 @@
*/

#define MM_APPMAIN_PERF_ID 30 /**< \brief Application main performance ID */
#define MM_SEGBREAK_PERF_ID 31 /**< \brief Memory processing segment break performance ID */
#define MM_EEPROM_POKE_PERF_ID 32 /**< \brief EEPROM poke performance ID */
#define MM_EEPROM_FILELOAD_PERF_ID 33 /**< \brief EEPROM file load performance ID */
#define MM_EEPROM_FILL_PERF_ID 34 /**< \brief EEPROM fill performance ID */
#define MM_EEPROM_POKE_PERF_ID 31 /**< \brief EEPROM poke performance ID */
#define MM_EEPROM_FILELOAD_PERF_ID 32 /**< \brief EEPROM file load performance ID */
#define MM_EEPROM_FILL_PERF_ID 33 /**< \brief EEPROM fill performance ID */

/**\}*/

Expand Down
11 changes: 0 additions & 11 deletions fsw/src/mm_utils.c
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@
*************************************************************************/
#include "mm_app.h"
#include "mm_utils.h"
#include "mm_perfids.h"
#include "mm_msgids.h"
#include "mm_events.h"
#include "mm_dump.h"
Expand Down Expand Up @@ -66,20 +65,10 @@ void MM_ResetHk(void)
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
void MM_SegmentBreak(void)
{
/*
** Performance Log entry stamp
*/
CFE_ES_PerfLogEntry(MM_SEGBREAK_PERF_ID);

/*
** Give something else the chance to run
*/
OS_TaskDelay(MM_PROCESSOR_CYCLE);

/*
** Performance Log exit stamp
*/
CFE_ES_PerfLogExit(MM_SEGBREAK_PERF_ID);
}

/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
Expand Down
Loading