mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-04-19 21:11:57 -04:00
Replace "Infinite loop" comment in main() with something sensible.
This commit is contained in:
parent
e8c5f36b00
commit
8be818e771
|
@ -277,7 +277,11 @@ int main(void)
|
|||
/* Start the scheduler. */
|
||||
vTaskStartScheduler();
|
||||
|
||||
/* Infinite loop */
|
||||
/* If all is well, the scheduler will now be running, and the following line
|
||||
will never be reached. If the following line does execute, then there was
|
||||
insufficient FreeRTOS heap memory available for the idle and/or timer tasks
|
||||
to be created. See the memory management section on the FreeRTOS web site
|
||||
for more details. */
|
||||
for( ;; );
|
||||
}
|
||||
/*-----------------------------------------------------------*/
|
||||
|
|
Loading…
Reference in a new issue