Skip to content

Commit

Permalink
Update the comments
Browse files Browse the repository at this point in the history
  • Loading branch information
chinglee-iot committed Sep 25, 2023
1 parent 45431fa commit 997e6f9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions include/task.h
Original file line number Diff line number Diff line change
Expand Up @@ -1959,11 +1959,11 @@ configSTACK_DEPTH_TYPE uxTaskGetStackHighWaterMark2( TaskHandle_t xTask ) PRIVIL
* This function is used to provide a statically allocated block of memory to FreeRTOS to hold the Idle Tasks TCB. This function is required when
* configSUPPORT_STATIC_ALLOCATION is set. For more information see this URI: https://www.FreeRTOS.org/a00110.html#configSUPPORT_STATIC_ALLOCATION
*
* In the FreeRTOS SMP, configNUMBER_OF_CORES - 1 idle tasks which do the minimal job
* In the FreeRTOS SMP, configNUMBER_OF_CORES - 1 idle tasks which do the passive job
* are also created to ensure that each core has an idle task to run when no other
* task is available to run. Set xCoreID to 0 to specify the idle task memory for
* the active idle task. Set xCoreID to 1 ~ ( configNUMBER_OF_CORES - 1 ) to specify
* the idle task memory for a passive idle task which does the minimal job.
* the idle task memory for a passive idle task.
*
* @param ppxIdleTaskTCBBuffer A handle to a statically allocated TCB buffer
* @param ppxIdleTaskStackBuffer A handle to a statically allocated Stack buffer for the idle task
Expand Down

0 comments on commit 997e6f9

Please sign in to comment.