File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -855,20 +855,20 @@ void vApplicationGetTimerTaskMemory( StaticTask_t **ppxTimerTaskTCBBuffer,
855
855
StackType_t ** ppxTimerTaskStackBuffer,
856
856
uint32_t * pulTimerTaskStackSize )
857
857
{
858
- /* If the buffers to be provided to the Idle task are declared inside this
858
+ /* If the buffers to be provided to the Timer task are declared inside this
859
859
function then they must be declared static - otherwise they will be allocated on
860
860
the stack and hence would not exists after this function exits. * /
861
861
static StaticTask_t xTimerTaskTCB;
862
862
static StackType_t uxTimerTaskStack[ configMINIMAL_STACK_SIZE ] ;
863
863
864
- /* Pass out a pointer to the StaticTask_t structure in which the Idle task's
864
+ /* Pass out a pointer to the StaticTask_t structure in which the Timer task's
865
865
state will be stored. * /
866
866
* ppxTimerTaskTCBBuffer = &xTimerTaskTCB;
867
867
868
- /* Pass out the array that will be used as the Idle task's stack. * /
868
+ /* Pass out the array that will be used as the Timer task's stack. * /
869
869
* ppxTimerTaskStackBuffer = uxTimerTaskStack;
870
870
871
- /* Pass out the stack size of the array pointed to by * ppxIdleTaskStackBuffer .
871
+ /* Pass out the stack size of the array pointed to by * ppxTimerTaskStackBuffer .
872
872
Note the stack size is a count of StackType_t * /
873
873
* pulTimerTaskStackSize = sizeof(uxTimerTaskStack) / sizeof(* uxTimerTaskStack);
874
874
}
You can’t perform that action at this time.
0 commit comments