From b4204bf3da3ce5d83b5ae940bb2f0f87914745ea Mon Sep 17 00:00:00 2001 From: richardbarry Date: Thu, 19 Jan 2012 22:17:10 +0000 Subject: [PATCH] Replace "Infinite loop" comment in main() with something sensible. git-svn-id: https://svn.code.sf.net/p/freertos/code/trunk@1667 1d2547de-c912-0410-9cb9-b8ca96c0e9e2 --- Demo/CORTEX_M4F_M0_LPC43xx_Keil/M4/main.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Demo/CORTEX_M4F_M0_LPC43xx_Keil/M4/main.c b/Demo/CORTEX_M4F_M0_LPC43xx_Keil/M4/main.c index 7b8cf1667..f8acddddb 100644 --- a/Demo/CORTEX_M4F_M0_LPC43xx_Keil/M4/main.c +++ b/Demo/CORTEX_M4F_M0_LPC43xx_Keil/M4/main.c @@ -216,7 +216,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( ;; ); } /*-----------------------------------------------------------*/ -- 2.39.5