mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-04-19 21:11:57 -04:00
Add more comments.
This commit is contained in:
parent
ea209490e1
commit
223feee46c
|
@ -201,6 +201,7 @@ unsigned portBASE_TYPE uxLEDToUse = 0;
|
|||
operating without error. */
|
||||
for( ;; )
|
||||
{
|
||||
/* Wait until it is time to check all the other tasks again. */
|
||||
vTaskDelayUntil( &xLastWakeTime, xDelayPeriod );
|
||||
|
||||
if( lRegTestStatus != pdPASS )
|
||||
|
@ -257,6 +258,8 @@ unsigned portBASE_TYPE uxLEDToUse = 0;
|
|||
}
|
||||
#endif
|
||||
|
||||
/* Toggle the LED. The toggle rate will depend on whether or not an
|
||||
error has been found in any tasks. */
|
||||
vParTestToggleLED( uxLEDToUse );
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue