|
|
@ -56,19 +56,19 @@
|
|
|
|
***************************************************************************
|
|
|
|
***************************************************************************
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
http://www.FreeRTOS.org - Documentation, books, training, latest versions,
|
|
|
|
http://www.FreeRTOS.org - Documentation, books, training, latest versions,
|
|
|
|
license and Real Time Engineers Ltd. contact details.
|
|
|
|
license and Real Time Engineers Ltd. contact details.
|
|
|
|
|
|
|
|
|
|
|
|
http://www.FreeRTOS.org/plus - A selection of FreeRTOS ecosystem products,
|
|
|
|
http://www.FreeRTOS.org/plus - A selection of FreeRTOS ecosystem products,
|
|
|
|
including FreeRTOS+Trace - an indispensable productivity tool, and our new
|
|
|
|
including FreeRTOS+Trace - an indispensable productivity tool, and our new
|
|
|
|
fully thread aware and reentrant UDP/IP stack.
|
|
|
|
fully thread aware and reentrant UDP/IP stack.
|
|
|
|
|
|
|
|
|
|
|
|
http://www.OpenRTOS.com - Real Time Engineers ltd license FreeRTOS to High
|
|
|
|
http://www.OpenRTOS.com - Real Time Engineers ltd license FreeRTOS to High
|
|
|
|
Integrity Systems, who sell the code with commercial support,
|
|
|
|
Integrity Systems, who sell the code with commercial support,
|
|
|
|
indemnification and middleware, under the OpenRTOS brand.
|
|
|
|
indemnification and middleware, under the OpenRTOS brand.
|
|
|
|
|
|
|
|
|
|
|
|
http://www.SafeRTOS.com - High Integrity Systems also provide a safety
|
|
|
|
http://www.SafeRTOS.com - High Integrity Systems also provide a safety
|
|
|
|
engineered and independently SIL3 certified version for use in safety and
|
|
|
|
engineered and independently SIL3 certified version for use in safety and
|
|
|
|
mission critical applications that require provable dependability.
|
|
|
|
mission critical applications that require provable dependability.
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
@ -134,7 +134,7 @@ to exclude the API function. */
|
|
|
|
|
|
|
|
|
|
|
|
/* This demo makes use of one or more example stats formatting functions. These
|
|
|
|
/* This demo makes use of one or more example stats formatting functions. These
|
|
|
|
format the raw data provided by the xTaskGetSystemState() function in to human
|
|
|
|
format the raw data provided by the xTaskGetSystemState() function in to human
|
|
|
|
readable ASCII form. See the notes in the implementation of vTaskList() within
|
|
|
|
readable ASCII form. See the notes in the implementation of vTaskList() within
|
|
|
|
FreeRTOS/Source/tasks.c for limitations. */
|
|
|
|
FreeRTOS/Source/tasks.c for limitations. */
|
|
|
|
#define configINCLUDE_STATS_FORMATTING_FUNCTIONS 1
|
|
|
|
#define configINCLUDE_STATS_FORMATTING_FUNCTIONS 1
|
|
|
|
|
|
|
|
|
|
|
@ -154,6 +154,6 @@ version. */
|
|
|
|
#define configUSE_PORT_OPTIMISED_TASK_SELECTION 1
|
|
|
|
#define configUSE_PORT_OPTIMISED_TASK_SELECTION 1
|
|
|
|
|
|
|
|
|
|
|
|
/* Disable interrupts and sit in a null loop if assert is called. */
|
|
|
|
/* Disable interrupts and sit in a null loop if assert is called. */
|
|
|
|
#define configASSERT( x ) if( ( x == 0 ) ) { taskDISABLE_INTERRUPTS(); for( ;; ); }
|
|
|
|
#define configASSERT( x ) if( ( ( x ) == 0 ) ) { taskDISABLE_INTERRUPTS(); for( ;; ); }
|
|
|
|
|
|
|
|
|
|
|
|
#endif /* FREERTOS_CONFIG_H */
|
|
|
|
#endif /* FREERTOS_CONFIG_H */
|
|
|
|