mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-09-03 12:53:52 -04:00
Add build configurations for small data model and small code model tests to the MSP430X CCS4 demo project.
This commit is contained in:
parent
16daa60de7
commit
2c894e0f55
6 changed files with 265 additions and 59 deletions
|
@ -126,7 +126,7 @@
|
|||
* error has occurred. The nature of the reg test tasks necessitates that they
|
||||
* are written in assembly code.
|
||||
*
|
||||
* *NOTE 2* vApplicationSetupTimerInterrupt() is called by the kernel to let
|
||||
* *NOTE 1* vApplicationSetupTimerInterrupt() is called by the kernel to let
|
||||
* the application set up a timer to generate the tick interrupt. In this
|
||||
* example a timer A0 is used for this purpose.
|
||||
*
|
||||
|
@ -355,8 +355,16 @@ unsigned char ucLine = 1;
|
|||
printf( cBuffer );
|
||||
fflush( stdout );
|
||||
|
||||
/* Also print out a message to
|
||||
the LCD - in this case the
|
||||
/* Also generate and output a
|
||||
table of task states. */
|
||||
printf( "\nTask\t\tState Priority\tStack\t#\n*****************************************" );
|
||||
fflush( stdout );
|
||||
vTaskList( ( signed char * ) cBuffer );
|
||||
printf( cBuffer );
|
||||
fflush( stdout );
|
||||
|
||||
/* Finally print out a message
|
||||
to the LCD - in this case the
|
||||
pointer to the string to print
|
||||
is sent directly in the
|
||||
ulMessageValue member of the
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue