/* Start the scheduler. */\r
vTaskStartScheduler();\r
\r
- /* Infinite loop */\r
+ /* If all is well, the scheduler will now be running, and the following line\r
+ will never be reached. If the following line does execute, then there was\r
+ insufficient FreeRTOS heap memory available for the idle and/or timer tasks\r
+ to be created. See the memory management section on the FreeRTOS web site\r
+ for more details. */\r
for( ;; ); \r
}\r
/*-----------------------------------------------------------*/\r