diff options
author | rtel <rtel@1d2547de-c912-0410-9cb9-b8ca96c0e9e2> | 2016-01-12 10:38:16 +0000 |
---|---|---|
committer | rtel <rtel@1d2547de-c912-0410-9cb9-b8ca96c0e9e2> | 2016-01-12 10:38:16 +0000 |
commit | 1630418ddaa40fd71fc35bd041f1244aeb45534f (patch) | |
tree | b054402c2ec960d9c9a1d6a2e1b79fdba5de071d /FreeRTOS/Demo/RX200_RX231-RSK_Renesas_e2studio | |
parent | 51c3d83fc6edf9ea87445478310380f9f389f42a (diff) | |
download | freertos-1630418ddaa40fd71fc35bd041f1244aeb45534f.tar.gz |
Correct a comment that had been cut and paste into multiple main.c files.
git-svn-id: http://svn.code.sf.net/p/freertos/code/trunk@2400 1d2547de-c912-0410-9cb9-b8ca96c0e9e2
Diffstat (limited to 'FreeRTOS/Demo/RX200_RX231-RSK_Renesas_e2studio')
-rw-r--r-- | FreeRTOS/Demo/RX200_RX231-RSK_Renesas_e2studio/src/Blinky_Demo/main_blinky.c | 10 | ||||
-rw-r--r-- | FreeRTOS/Demo/RX200_RX231-RSK_Renesas_e2studio/src/Full_Demo/main_full.c | 10 |
2 files changed, 8 insertions, 12 deletions
diff --git a/FreeRTOS/Demo/RX200_RX231-RSK_Renesas_e2studio/src/Blinky_Demo/main_blinky.c b/FreeRTOS/Demo/RX200_RX231-RSK_Renesas_e2studio/src/Blinky_Demo/main_blinky.c index 86707a05a..146f7150e 100644 --- a/FreeRTOS/Demo/RX200_RX231-RSK_Renesas_e2studio/src/Blinky_Demo/main_blinky.c +++ b/FreeRTOS/Demo/RX200_RX231-RSK_Renesas_e2studio/src/Blinky_Demo/main_blinky.c @@ -160,12 +160,10 @@ void main_blinky( void ) /* 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 either insufficient FreeRTOS heap memory available for the idle
- and/or timer tasks to be created, or vTaskStartScheduler() was called from
- User mode. See the memory management section on the FreeRTOS web site for
- more details on the FreeRTOS heap http://www.freertos.org/a00111.html. The
- mode from which main() is called is set in the C start up code and must be
- a privileged mode (not user mode). */
+ 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 on the FreeRTOS heap
+ http://www.freertos.org/a00111.html. */
for( ;; );
}
/*-----------------------------------------------------------*/
diff --git a/FreeRTOS/Demo/RX200_RX231-RSK_Renesas_e2studio/src/Full_Demo/main_full.c b/FreeRTOS/Demo/RX200_RX231-RSK_Renesas_e2studio/src/Full_Demo/main_full.c index 02ed6fcc8..ade85d53d 100644 --- a/FreeRTOS/Demo/RX200_RX231-RSK_Renesas_e2studio/src/Full_Demo/main_full.c +++ b/FreeRTOS/Demo/RX200_RX231-RSK_Renesas_e2studio/src/Full_Demo/main_full.c @@ -253,12 +253,10 @@ void main_full( void ) /* 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 either insufficient FreeRTOS heap memory available for the idle
- and/or timer tasks to be created, or vTaskStartScheduler() was called from
- User mode. See the memory management section on the FreeRTOS web site for
- more details on the FreeRTOS heap http://www.freertos.org/a00111.html. The
- mode from which main() is called is set in the C start up code and must be
- a privileged mode (not user mode). */
+ 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 on the FreeRTOS heap
+ http://www.freertos.org/a00111.html. */
for( ;; );
}
/*-----------------------------------------------------------*/
|