X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=Demo%2FARM7_LPC2129_IAR%2Fmain.c;h=91821648e48df2186caee0463ce3d89ac533f56b;hb=baa9ed196e2945d39b1487fbd47e7f089a534ee5;hp=a986552981ad2bad5ef085f0f1e8361754b34d24;hpb=f6abf70e60051c8dc271e329eeef65028ba3126b;p=freertos diff --git a/Demo/ARM7_LPC2129_IAR/main.c b/Demo/ARM7_LPC2129_IAR/main.c index a98655298..91821648e 100644 --- a/Demo/ARM7_LPC2129_IAR/main.c +++ b/Demo/ARM7_LPC2129_IAR/main.c @@ -35,9 +35,9 @@ */ -/* +/* NOTE : Tasks run in system mode and the scheduler runs in Supervisor mode. - The processor MUST be in supervisor mode when vTaskStartScheduler is + The processor MUST be in supervisor mode when vTaskStartScheduler is called. The demo applications included in the FreeRTOS.org download switch to supervisor mode prior to main being called. If you are not using one of these demo application projects then ensure Supervisor mode is used. @@ -159,9 +159,9 @@ void main( void ) xTaskCreate( vErrorChecks, "Check", configMINIMAL_STACK_SIZE, NULL, mainCHECK_TASK_PRIORITY, NULL ); /* Start the scheduler. - + NOTE : Tasks run in system mode and the scheduler runs in Supervisor mode. - The processor MUST be in supervisor mode when vTaskStartScheduler is + The processor MUST be in supervisor mode when vTaskStartScheduler is called. The demo applications included in the FreeRTOS.org download switch to supervisor mode prior to main being called. If you are not using one of these demo application projects then ensure Supervisor mode is used here.