mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-04-20 05:21:59 -04:00
Correct a comment that had been cut and paste into multiple main.c files.
This commit is contained in:
parent
5690221c5c
commit
f81575dcee
|
@ -122,7 +122,7 @@
|
||||||
* When mainSELECTED_APPLICATION is set to 1 the comprehensive test and demo
|
* When mainSELECTED_APPLICATION is set to 1 the comprehensive test and demo
|
||||||
* application will be run.
|
* application will be run.
|
||||||
*/
|
*/
|
||||||
#define mainSELECTED_APPLICATION 1
|
#define mainSELECTED_APPLICATION 0
|
||||||
|
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
|
|
@ -284,12 +284,10 @@ void main_full( void )
|
||||||
|
|
||||||
/* If all is well, the scheduler will now be running, and the following
|
/* 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
|
line will never be reached. If the following line does execute, then
|
||||||
there was either insufficient FreeRTOS heap memory available for the idle
|
there was insufficient FreeRTOS heap memory available for the Idle and/or
|
||||||
and/or timer tasks to be created, or vTaskStartScheduler() was called from
|
timer tasks to be created. See the memory management section on the
|
||||||
User mode. See the memory management section on the FreeRTOS web site for
|
FreeRTOS web site for more details on the FreeRTOS heap
|
||||||
more details on the FreeRTOS heap http://www.freertos.org/a00111.html. The
|
http://www.freertos.org/a00111.html. */
|
||||||
mode from which main() is called is set in the C start up code and must be
|
|
||||||
a privileged mode (not user mode). */
|
|
||||||
for( ;; );
|
for( ;; );
|
||||||
}
|
}
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
|
@ -173,12 +173,10 @@ void main_blinky( void )
|
||||||
|
|
||||||
/* If all is well, the scheduler will now be running, and the following
|
/* 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
|
line will never be reached. If the following line does execute, then
|
||||||
there was either insufficient FreeRTOS heap memory available for the idle
|
there was insufficient FreeRTOS heap memory available for the Idle and/or
|
||||||
and/or timer tasks to be created, or vTaskStartScheduler() was called from
|
timer tasks to be created. See the memory management section on the
|
||||||
User mode. See the memory management section on the FreeRTOS web site for
|
FreeRTOS web site for more details on the FreeRTOS heap
|
||||||
more details on the FreeRTOS heap http://www.freertos.org/a00111.html. The
|
http://www.freertos.org/a00111.html. */
|
||||||
mode from which main() is called is set in the C start up code and must be
|
|
||||||
a privileged mode (not user mode). */
|
|
||||||
for( ;; );
|
for( ;; );
|
||||||
}
|
}
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
|
@ -246,12 +246,10 @@ void main_full( void )
|
||||||
|
|
||||||
/* If all is well, the scheduler will now be running, and the following
|
/* 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
|
line will never be reached. If the following line does execute, then
|
||||||
there was either insufficient FreeRTOS heap memory available for the idle
|
there was insufficient FreeRTOS heap memory available for the Idle and/or
|
||||||
and/or timer tasks to be created, or vTaskStartScheduler() was called from
|
timer tasks to be created. See the memory management section on the
|
||||||
User mode. See the memory management section on the FreeRTOS web site for
|
FreeRTOS web site for more details on the FreeRTOS heap
|
||||||
more details on the FreeRTOS heap http://www.freertos.org/a00111.html. The
|
http://www.freertos.org/a00111.html. */
|
||||||
mode from which main() is called is set in the C start up code and must be
|
|
||||||
a privileged mode (not user mode). */
|
|
||||||
for( ;; );
|
for( ;; );
|
||||||
}
|
}
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
@ -352,7 +350,7 @@ unsigned long ulErrorFound = pdFALSE;
|
||||||
{
|
{
|
||||||
ulErrorFound = 1UL << 13UL;
|
ulErrorFound = 1UL << 13UL;
|
||||||
}
|
}
|
||||||
|
|
||||||
if( xAreTaskNotificationTasksStillRunning() != pdPASS )
|
if( xAreTaskNotificationTasksStillRunning() != pdPASS )
|
||||||
{
|
{
|
||||||
ulErrorFound = 1UL << 14UL;
|
ulErrorFound = 1UL << 14UL;
|
||||||
|
|
|
@ -173,12 +173,10 @@ void main_blinky( void )
|
||||||
|
|
||||||
/* If all is well, the scheduler will now be running, and the following
|
/* 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
|
line will never be reached. If the following line does execute, then
|
||||||
there was either insufficient FreeRTOS heap memory available for the idle
|
there was insufficient FreeRTOS heap memory available for the Idle and/or
|
||||||
and/or timer tasks to be created, or vTaskStartScheduler() was called from
|
timer tasks to be created. See the memory management section on the
|
||||||
User mode. See the memory management section on the FreeRTOS web site for
|
FreeRTOS web site for more details on the FreeRTOS heap
|
||||||
more details on the FreeRTOS heap http://www.freertos.org/a00111.html. The
|
http://www.freertos.org/a00111.html. */
|
||||||
mode from which main() is called is set in the C start up code and must be
|
|
||||||
a privileged mode (not user mode). */
|
|
||||||
for( ;; );
|
for( ;; );
|
||||||
}
|
}
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
|
@ -246,12 +246,10 @@ void main_full( void )
|
||||||
|
|
||||||
/* If all is well, the scheduler will now be running, and the following
|
/* 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
|
line will never be reached. If the following line does execute, then
|
||||||
there was either insufficient FreeRTOS heap memory available for the idle
|
there was insufficient FreeRTOS heap memory available for the Idle and/or
|
||||||
and/or timer tasks to be created, or vTaskStartScheduler() was called from
|
timer tasks to be created. See the memory management section on the
|
||||||
User mode. See the memory management section on the FreeRTOS web site for
|
FreeRTOS web site for more details on the FreeRTOS heap
|
||||||
more details on the FreeRTOS heap http://www.freertos.org/a00111.html. The
|
http://www.freertos.org/a00111.html. */
|
||||||
mode from which main() is called is set in the C start up code and must be
|
|
||||||
a privileged mode (not user mode). */
|
|
||||||
for( ;; );
|
for( ;; );
|
||||||
}
|
}
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
@ -352,7 +350,7 @@ unsigned long ulErrorFound = pdFALSE;
|
||||||
{
|
{
|
||||||
ulErrorFound = 1UL << 13UL;
|
ulErrorFound = 1UL << 13UL;
|
||||||
}
|
}
|
||||||
|
|
||||||
if( xAreTaskNotificationTasksStillRunning() != pdPASS )
|
if( xAreTaskNotificationTasksStillRunning() != pdPASS )
|
||||||
{
|
{
|
||||||
ulErrorFound = 1UL << 14UL;
|
ulErrorFound = 1UL << 14UL;
|
||||||
|
|
|
@ -170,12 +170,10 @@ void main_blinky( void )
|
||||||
|
|
||||||
/* If all is well, the scheduler will now be running, and the following
|
/* 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
|
line will never be reached. If the following line does execute, then
|
||||||
there was either insufficient FreeRTOS heap memory available for the idle
|
there was insufficient FreeRTOS heap memory available for the Idle and/or
|
||||||
and/or timer tasks to be created, or vTaskStartScheduler() was called from
|
timer tasks to be created. See the memory management section on the
|
||||||
User mode. See the memory management section on the FreeRTOS web site for
|
FreeRTOS web site for more details on the FreeRTOS heap
|
||||||
more details on the FreeRTOS heap http://www.freertos.org/a00111.html. The
|
http://www.freertos.org/a00111.html. */
|
||||||
mode from which main() is called is set in the C start up code and must be
|
|
||||||
a privileged mode (not user mode). */
|
|
||||||
for( ;; );
|
for( ;; );
|
||||||
}
|
}
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
|
@ -254,12 +254,10 @@ void main_full( void )
|
||||||
|
|
||||||
/* If all is well, the scheduler will now be running, and the following
|
/* 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
|
line will never be reached. If the following line does execute, then
|
||||||
there was either insufficient FreeRTOS heap memory available for the idle
|
there was insufficient FreeRTOS heap memory available for the Idle and/or
|
||||||
and/or timer tasks to be created, or vTaskStartScheduler() was called from
|
timer tasks to be created. See the memory management section on the
|
||||||
User mode. See the memory management section on the FreeRTOS web site for
|
FreeRTOS web site for more details on the FreeRTOS heap
|
||||||
more details on the FreeRTOS heap http://www.freertos.org/a00111.html. The
|
http://www.freertos.org/a00111.html. */
|
||||||
mode from which main() is called is set in the C start up code and must be
|
|
||||||
a privileged mode (not user mode). */
|
|
||||||
for( ;; );
|
for( ;; );
|
||||||
}
|
}
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
|
@ -173,12 +173,10 @@ void main_blinky( void )
|
||||||
|
|
||||||
/* If all is well, the scheduler will now be running, and the following
|
/* 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
|
line will never be reached. If the following line does execute, then
|
||||||
there was either insufficient FreeRTOS heap memory available for the idle
|
there was insufficient FreeRTOS heap memory available for the Idle and/or
|
||||||
and/or timer tasks to be created, or vTaskStartScheduler() was called from
|
timer tasks to be created. See the memory management section on the
|
||||||
User mode. See the memory management section on the FreeRTOS web site for
|
FreeRTOS web site for more details on the FreeRTOS heap
|
||||||
more details on the FreeRTOS heap http://www.freertos.org/a00111.html. The
|
http://www.freertos.org/a00111.html. */
|
||||||
mode from which main() is called is set in the C start up code and must be
|
|
||||||
a privileged mode (not user mode). */
|
|
||||||
for( ;; );
|
for( ;; );
|
||||||
}
|
}
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
|
@ -168,12 +168,10 @@ void main_blinky( void )
|
||||||
|
|
||||||
/* If all is well, the scheduler will now be running, and the following
|
/* 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
|
line will never be reached. If the following line does execute, then
|
||||||
there was either insufficient FreeRTOS heap memory available for the idle
|
there was insufficient FreeRTOS heap memory available for the Idle and/or
|
||||||
and/or timer tasks to be created, or vTaskStartScheduler() was called from
|
timer tasks to be created. See the memory management section on the
|
||||||
User mode. See the memory management section on the FreeRTOS web site for
|
FreeRTOS web site for more details on the FreeRTOS heap
|
||||||
more details on the FreeRTOS heap http://www.freertos.org/a00111.html. The
|
http://www.freertos.org/a00111.html. */
|
||||||
mode from which main() is called is set in the C start up code and must be
|
|
||||||
a privileged mode (not user mode). */
|
|
||||||
for( ;; );
|
for( ;; );
|
||||||
}
|
}
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
|
@ -281,12 +281,10 @@ void main_full( void )
|
||||||
|
|
||||||
/* If all is well, the scheduler will now be running, and the following
|
/* 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
|
line will never be reached. If the following line does execute, then
|
||||||
there was either insufficient FreeRTOS heap memory available for the idle
|
there was insufficient FreeRTOS heap memory available for the Idle and/or
|
||||||
and/or timer tasks to be created, or vTaskStartScheduler() was called from
|
timer tasks to be created. See the memory management section on the
|
||||||
User mode. See the memory management section on the FreeRTOS web site for
|
FreeRTOS web site for more details on the FreeRTOS heap
|
||||||
more details on the FreeRTOS heap http://www.freertos.org/a00111.html. The
|
http://www.freertos.org/a00111.html. */
|
||||||
mode from which main() is called is set in the C start up code and must be
|
|
||||||
a privileged mode (not user mode). */
|
|
||||||
for( ;; );
|
for( ;; );
|
||||||
}
|
}
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
|
@ -166,12 +166,10 @@ TimerHandle_t xTimer;
|
||||||
|
|
||||||
/* If all is well, the scheduler will now be running, and the following
|
/* 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
|
line will never be reached. If the following line does execute, then
|
||||||
there was either insufficient FreeRTOS heap memory available for the idle
|
there was insufficient FreeRTOS heap memory available for the Idle and/or
|
||||||
and/or timer tasks to be created, or vTaskStartScheduler() was called from
|
timer tasks to be created. See the memory management section on the
|
||||||
User mode. See the memory management section on the FreeRTOS web site for
|
FreeRTOS web site for more details on the FreeRTOS heap
|
||||||
more details on the FreeRTOS heap http://www.freertos.org/a00111.html. The
|
http://www.freertos.org/a00111.html. */
|
||||||
mode from which main() is called is set in the C start up code and must be
|
|
||||||
a privileged mode (not user mode). */
|
|
||||||
for( ;; );
|
for( ;; );
|
||||||
}
|
}
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
|
@ -162,12 +162,10 @@ void main_blinky( void )
|
||||||
|
|
||||||
/* If all is well, the scheduler will now be running, and the following
|
/* 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
|
line will never be reached. If the following line does execute, then
|
||||||
there was either insufficient FreeRTOS heap memory available for the idle
|
there was insufficient FreeRTOS heap memory available for the Idle and/or
|
||||||
and/or timer tasks to be created, or vTaskStartScheduler() was called from
|
timer tasks to be created. See the memory management section on the
|
||||||
User mode. See the memory management section on the FreeRTOS web site for
|
FreeRTOS web site for more details on the FreeRTOS heap
|
||||||
more details on the FreeRTOS heap http://www.freertos.org/a00111.html. The
|
http://www.freertos.org/a00111.html. */
|
||||||
mode from which main() is called is set in the C start up code and must be
|
|
||||||
a privileged mode (not user mode). */
|
|
||||||
for( ;; );
|
for( ;; );
|
||||||
}
|
}
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
|
@ -280,12 +280,10 @@ void main_full( void )
|
||||||
|
|
||||||
/* If all is well, the scheduler will now be running, and the following
|
/* 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
|
line will never be reached. If the following line does execute, then
|
||||||
there was either insufficient FreeRTOS heap memory available for the idle
|
there was insufficient FreeRTOS heap memory available for the Idle and/or
|
||||||
and/or timer tasks to be created, or vTaskStartScheduler() was called from
|
timer tasks to be created. See the memory management section on the
|
||||||
User mode. See the memory management section on the FreeRTOS web site for
|
FreeRTOS web site for more details on the FreeRTOS heap
|
||||||
more details on the FreeRTOS heap http://www.freertos.org/a00111.html. The
|
http://www.freertos.org/a00111.html. */
|
||||||
mode from which main() is called is set in the C start up code and must be
|
|
||||||
a privileged mode (not user mode). */
|
|
||||||
for( ;; );
|
for( ;; );
|
||||||
}
|
}
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
|
@ -162,12 +162,10 @@ void main_blinky( void )
|
||||||
|
|
||||||
/* If all is well, the scheduler will now be running, and the following
|
/* 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
|
line will never be reached. If the following line does execute, then
|
||||||
there was either insufficient FreeRTOS heap memory available for the idle
|
there was insufficient FreeRTOS heap memory available for the Idle and/or
|
||||||
and/or timer tasks to be created, or vTaskStartScheduler() was called from
|
timer tasks to be created. See the memory management section on the
|
||||||
User mode. See the memory management section on the FreeRTOS web site for
|
FreeRTOS web site for more details on the FreeRTOS heap
|
||||||
more details on the FreeRTOS heap http://www.freertos.org/a00111.html. The
|
http://www.freertos.org/a00111.html. */
|
||||||
mode from which main() is called is set in the C start up code and must be
|
|
||||||
a privileged mode (not user mode). */
|
|
||||||
for( ;; );
|
for( ;; );
|
||||||
}
|
}
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
|
@ -277,12 +277,10 @@ void main_full( void )
|
||||||
|
|
||||||
/* If all is well, the scheduler will now be running, and the following
|
/* 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
|
line will never be reached. If the following line does execute, then
|
||||||
there was either insufficient FreeRTOS heap memory available for the idle
|
there was insufficient FreeRTOS heap memory available for the Idle and/or
|
||||||
and/or timer tasks to be created, or vTaskStartScheduler() was called from
|
timer tasks to be created. See the memory management section on the
|
||||||
User mode. See the memory management section on the FreeRTOS web site for
|
FreeRTOS web site for more details on the FreeRTOS heap
|
||||||
more details on the FreeRTOS heap http://www.freertos.org/a00111.html. The
|
http://www.freertos.org/a00111.html. */
|
||||||
mode from which main() is called is set in the C start up code and must be
|
|
||||||
a privileged mode (not user mode). */
|
|
||||||
for( ;; );
|
for( ;; );
|
||||||
}
|
}
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
|
@ -160,12 +160,10 @@ void main_blinky( void )
|
||||||
|
|
||||||
/* If all is well, the scheduler will now be running, and the following
|
/* 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
|
line will never be reached. If the following line does execute, then
|
||||||
there was either insufficient FreeRTOS heap memory available for the idle
|
there was insufficient FreeRTOS heap memory available for the Idle and/or
|
||||||
and/or timer tasks to be created, or vTaskStartScheduler() was called from
|
timer tasks to be created. See the memory management section on the
|
||||||
User mode. See the memory management section on the FreeRTOS web site for
|
FreeRTOS web site for more details on the FreeRTOS heap
|
||||||
more details on the FreeRTOS heap http://www.freertos.org/a00111.html. The
|
http://www.freertos.org/a00111.html. */
|
||||||
mode from which main() is called is set in the C start up code and must be
|
|
||||||
a privileged mode (not user mode). */
|
|
||||||
for( ;; );
|
for( ;; );
|
||||||
}
|
}
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
|
@ -253,12 +253,10 @@ void main_full( void )
|
||||||
|
|
||||||
/* If all is well, the scheduler will now be running, and the following
|
/* 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
|
line will never be reached. If the following line does execute, then
|
||||||
there was either insufficient FreeRTOS heap memory available for the idle
|
there was insufficient FreeRTOS heap memory available for the Idle and/or
|
||||||
and/or timer tasks to be created, or vTaskStartScheduler() was called from
|
timer tasks to be created. See the memory management section on the
|
||||||
User mode. See the memory management section on the FreeRTOS web site for
|
FreeRTOS web site for more details on the FreeRTOS heap
|
||||||
more details on the FreeRTOS heap http://www.freertos.org/a00111.html. The
|
http://www.freertos.org/a00111.html. */
|
||||||
mode from which main() is called is set in the C start up code and must be
|
|
||||||
a privileged mode (not user mode). */
|
|
||||||
for( ;; );
|
for( ;; );
|
||||||
}
|
}
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
|
@ -160,12 +160,10 @@ void main_blinky( void )
|
||||||
|
|
||||||
/* If all is well, the scheduler will now be running, and the following
|
/* 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
|
line will never be reached. If the following line does execute, then
|
||||||
there was either insufficient FreeRTOS heap memory available for the idle
|
there was insufficient FreeRTOS heap memory available for the Idle and/or
|
||||||
and/or timer tasks to be created, or vTaskStartScheduler() was called from
|
timer tasks to be created. See the memory management section on the
|
||||||
User mode. See the memory management section on the FreeRTOS web site for
|
FreeRTOS web site for more details on the FreeRTOS heap
|
||||||
more details on the FreeRTOS heap http://www.freertos.org/a00111.html. The
|
http://www.freertos.org/a00111.html. */
|
||||||
mode from which main() is called is set in the C start up code and must be
|
|
||||||
a privileged mode (not user mode). */
|
|
||||||
for( ;; );
|
for( ;; );
|
||||||
}
|
}
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
|
@ -253,12 +253,10 @@ void main_full( void )
|
||||||
|
|
||||||
/* If all is well, the scheduler will now be running, and the following
|
/* 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
|
line will never be reached. If the following line does execute, then
|
||||||
there was either insufficient FreeRTOS heap memory available for the idle
|
there was insufficient FreeRTOS heap memory available for the Idle and/or
|
||||||
and/or timer tasks to be created, or vTaskStartScheduler() was called from
|
timer tasks to be created. See the memory management section on the
|
||||||
User mode. See the memory management section on the FreeRTOS web site for
|
FreeRTOS web site for more details on the FreeRTOS heap
|
||||||
more details on the FreeRTOS heap http://www.freertos.org/a00111.html. The
|
http://www.freertos.org/a00111.html. */
|
||||||
mode from which main() is called is set in the C start up code and must be
|
|
||||||
a privileged mode (not user mode). */
|
|
||||||
for( ;; );
|
for( ;; );
|
||||||
}
|
}
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
|
@ -173,12 +173,10 @@ void main_blinky( void )
|
||||||
|
|
||||||
/* If all is well, the scheduler will now be running, and the following
|
/* 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
|
line will never be reached. If the following line does execute, then
|
||||||
there was either insufficient FreeRTOS heap memory available for the idle
|
there was insufficient FreeRTOS heap memory available for the Idle and/or
|
||||||
and/or timer tasks to be created, or vTaskStartScheduler() was called from
|
timer tasks to be created. See the memory management section on the
|
||||||
User mode. See the memory management section on the FreeRTOS web site for
|
FreeRTOS web site for more details on the FreeRTOS heap
|
||||||
more details on the FreeRTOS heap http://www.freertos.org/a00111.html. The
|
http://www.freertos.org/a00111.html. */
|
||||||
mode from which main() is called is set in the C start up code and must be
|
|
||||||
a privileged mode (not user mode). */
|
|
||||||
for( ;; );
|
for( ;; );
|
||||||
}
|
}
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
|
@ -266,12 +266,10 @@ void main_full( void )
|
||||||
|
|
||||||
/* If all is well, the scheduler will now be running, and the following
|
/* 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
|
line will never be reached. If the following line does execute, then
|
||||||
there was either insufficient FreeRTOS heap memory available for the idle
|
there was insufficient FreeRTOS heap memory available for the Idle and/or
|
||||||
and/or timer tasks to be created, or vTaskStartScheduler() was called from
|
timer tasks to be created. See the memory management section on the
|
||||||
User mode. See the memory management section on the FreeRTOS web site for
|
FreeRTOS web site for more details on the FreeRTOS heap
|
||||||
more details on the FreeRTOS heap http://www.freertos.org/a00111.html. The
|
http://www.freertos.org/a00111.html. */
|
||||||
mode from which main() is called is set in the C start up code and must be
|
|
||||||
a privileged mode (not user mode). */
|
|
||||||
for( ;; );
|
for( ;; );
|
||||||
}
|
}
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
|
@ -173,12 +173,10 @@ void main_blinky( void )
|
||||||
|
|
||||||
/* If all is well, the scheduler will now be running, and the following
|
/* 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
|
line will never be reached. If the following line does execute, then
|
||||||
there was either insufficient FreeRTOS heap memory available for the idle
|
there was insufficient FreeRTOS heap memory available for the Idle and/or
|
||||||
and/or timer tasks to be created, or vTaskStartScheduler() was called from
|
timer tasks to be created. See the memory management section on the
|
||||||
User mode. See the memory management section on the FreeRTOS web site for
|
FreeRTOS web site for more details on the FreeRTOS heap
|
||||||
more details on the FreeRTOS heap http://www.freertos.org/a00111.html. The
|
http://www.freertos.org/a00111.html. */
|
||||||
mode from which main() is called is set in the C start up code and must be
|
|
||||||
a privileged mode (not user mode). */
|
|
||||||
for( ;; );
|
for( ;; );
|
||||||
}
|
}
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
|
@ -266,12 +266,10 @@ void main_full( void )
|
||||||
|
|
||||||
/* If all is well, the scheduler will now be running, and the following
|
/* 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
|
line will never be reached. If the following line does execute, then
|
||||||
there was either insufficient FreeRTOS heap memory available for the idle
|
there was insufficient FreeRTOS heap memory available for the Idle and/or
|
||||||
and/or timer tasks to be created, or vTaskStartScheduler() was called from
|
timer tasks to be created. See the memory management section on the
|
||||||
User mode. See the memory management section on the FreeRTOS web site for
|
FreeRTOS web site for more details on the FreeRTOS heap
|
||||||
more details on the FreeRTOS heap http://www.freertos.org/a00111.html. The
|
http://www.freertos.org/a00111.html. */
|
||||||
mode from which main() is called is set in the C start up code and must be
|
|
||||||
a privileged mode (not user mode). */
|
|
||||||
for( ;; );
|
for( ;; );
|
||||||
}
|
}
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
|
@ -162,12 +162,10 @@ void main_blinky( void )
|
||||||
|
|
||||||
/* If all is well, the scheduler will now be running, and the following
|
/* 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
|
line will never be reached. If the following line does execute, then
|
||||||
there was either insufficient FreeRTOS heap memory available for the idle
|
there was insufficient FreeRTOS heap memory available for the Idle and/or
|
||||||
and/or timer tasks to be created, or vTaskStartScheduler() was called from
|
timer tasks to be created. See the memory management section on the
|
||||||
User mode. See the memory management section on the FreeRTOS web site for
|
FreeRTOS web site for more details on the FreeRTOS heap
|
||||||
more details on the FreeRTOS heap http://www.freertos.org/a00111.html. The
|
http://www.freertos.org/a00111.html. */
|
||||||
mode from which main() is called is set in the C start up code and must be
|
|
||||||
a privileged mode (not user mode). */
|
|
||||||
for( ;; );
|
for( ;; );
|
||||||
}
|
}
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
|
@ -282,12 +282,10 @@ void main_full( void )
|
||||||
|
|
||||||
/* If all is well, the scheduler will now be running, and the following
|
/* 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
|
line will never be reached. If the following line does execute, then
|
||||||
there was either insufficient FreeRTOS heap memory available for the idle
|
there was insufficient FreeRTOS heap memory available for the Idle and/or
|
||||||
and/or timer tasks to be created, or vTaskStartScheduler() was called from
|
timer tasks to be created. See the memory management section on the
|
||||||
User mode. See the memory management section on the FreeRTOS web site for
|
FreeRTOS web site for more details on the FreeRTOS heap
|
||||||
more details on the FreeRTOS heap http://www.freertos.org/a00111.html. The
|
http://www.freertos.org/a00111.html. */
|
||||||
mode from which main() is called is set in the C start up code and must be
|
|
||||||
a privileged mode (not user mode). */
|
|
||||||
for( ;; );
|
for( ;; );
|
||||||
}
|
}
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
|
@ -162,12 +162,10 @@ void main_blinky( void )
|
||||||
|
|
||||||
/* If all is well, the scheduler will now be running, and the following
|
/* 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
|
line will never be reached. If the following line does execute, then
|
||||||
there was either insufficient FreeRTOS heap memory available for the idle
|
there was insufficient FreeRTOS heap memory available for the Idle and/or
|
||||||
and/or timer tasks to be created, or vTaskStartScheduler() was called from
|
timer tasks to be created. See the memory management section on the
|
||||||
User mode. See the memory management section on the FreeRTOS web site for
|
FreeRTOS web site for more details on the FreeRTOS heap
|
||||||
more details on the FreeRTOS heap http://www.freertos.org/a00111.html. The
|
http://www.freertos.org/a00111.html. */
|
||||||
mode from which main() is called is set in the C start up code and must be
|
|
||||||
a privileged mode (not user mode). */
|
|
||||||
for( ;; );
|
for( ;; );
|
||||||
}
|
}
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
|
@ -282,12 +282,10 @@ void main_full( void )
|
||||||
|
|
||||||
/* If all is well, the scheduler will now be running, and the following
|
/* 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
|
line will never be reached. If the following line does execute, then
|
||||||
there was either insufficient FreeRTOS heap memory available for the idle
|
there was insufficient FreeRTOS heap memory available for the Idle and/or
|
||||||
and/or timer tasks to be created, or vTaskStartScheduler() was called from
|
timer tasks to be created. See the memory management section on the
|
||||||
User mode. See the memory management section on the FreeRTOS web site for
|
FreeRTOS web site for more details on the FreeRTOS heap
|
||||||
more details on the FreeRTOS heap http://www.freertos.org/a00111.html. The
|
http://www.freertos.org/a00111.html. */
|
||||||
mode from which main() is called is set in the C start up code and must be
|
|
||||||
a privileged mode (not user mode). */
|
|
||||||
for( ;; );
|
for( ;; );
|
||||||
}
|
}
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
Loading…
Reference in a new issue