Skip to content

Commit 25f0e11

Browse files
committed
Merge branch 'fix/utils' into 'master'
fix(utils): Fix an incompatible pointer type issue See merge request ae_group/esp-now!149
2 parents 3a0b62e + bcb0eff commit 25f0e11

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/utils/src/espnow_mem.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ void espnow_mem_print_task()
132132
#if ( ( configUSE_TRACE_FACILITY == 1 ) && ( configUSE_STATS_FORMATTING_FUNCTIONS > 0 ) )
133133
TaskStatus_t *pxTaskStatusArray = NULL;
134134
volatile UBaseType_t uxArraySize = 0;
135-
uint32_t ulTotalRunTime = 0, ulStatsAsPercentage = 0, ulRunTimeCounte = 0;
135+
configRUN_TIME_COUNTER_TYPE ulTotalRunTime = 0, ulStatsAsPercentage = 0, ulRunTimeCounte = 0;
136136
const char task_status_char[] = {'r', 'R', 'B', 'S', 'D'};
137137

138138
/* Take a snapshot of the number of tasks in case it changes while this

0 commit comments

Comments
 (0)