Line 66... |
Line 66... |
* See http://www.freertos.org/a00110.html.
|
* See http://www.freertos.org/a00110.html.
|
*----------------------------------------------------------*/
|
*----------------------------------------------------------*/
|
#include "board.h"
|
#include "board.h"
|
|
|
#define configUSE_PREEMPTION 1
|
#define configUSE_PREEMPTION 1
|
#define configUSE_IDLE_HOOK 1
|
#define configUSE_IDLE_HOOK 0
|
#define configUSE_TICK_HOOK 1
|
#define configUSE_TICK_HOOK 0
|
#define configCPU_CLOCK_HZ ( ( unsigned long ) SYS_CLK )
|
#define configCPU_CLOCK_HZ ( ( unsigned long ) SYS_CLK )
|
#define configTICK_RATE_HZ ( ( portTickType ) 1000 )
|
#define configTICK_RATE_HZ ( ( portTickType ) 1000 )
|
#define configMINIMAL_STACK_SIZE ( ( unsigned portSHORT ) 128 )
|
#define configMINIMAL_STACK_SIZE ( ( unsigned portSHORT ) 256 )
|
#define configTOTAL_HEAP_SIZE ( ( size_t ) ( 32 * 1024 ) )
|
#define configTOTAL_HEAP_SIZE ( ( size_t ) ( 32 * 1024 ) )
|
#define configMAX_TASK_NAME_LEN ( 32 )
|
#define configMAX_TASK_NAME_LEN ( 32 )
|
#define configUSE_TRACE_FACILITY 0
|
#define configUSE_TRACE_FACILITY 0
|
#define configUSE_16_BIT_TICKS 0
|
#define configUSE_16_BIT_TICKS 0
|
#define configIDLE_SHOULD_YIELD 1
|
#define configIDLE_SHOULD_YIELD 0
|
#define configUSE_CO_ROUTINES 1
|
|
#define configUSE_MUTEXES 1
|
#define configUSE_MUTEXES 1
|
#define configGENERATE_RUN_TIME_STATS 0
|
#define configUSE_RECURSIVE_MUTEXES 0
|
#define configCHECK_FOR_STACK_OVERFLOW 1
|
|
#define configUSE_RECURSIVE_MUTEXES 1
|
|
#define configQUEUE_REGISTRY_SIZE 1
|
#define configQUEUE_REGISTRY_SIZE 1
|
#define configUSE_MALLOC_FAILED_HOOK 1
|
#define configUSE_MALLOC_FAILED_HOOK 1
|
#define configUSE_APPLICATION_TASK_TAG 0
|
#define configUSE_APPLICATION_TASK_TAG 1
|
|
#define configUSE_COUNTING_SEMAPHORES 1
|
#define configMAX_PRIORITIES ( ( unsigned portBASE_TYPE ) 7 )
|
#define configMAX_PRIORITIES ( ( unsigned portBASE_TYPE ) 10 )
|
#define configMAX_CO_ROUTINE_PRIORITIES ( 2 )
|
|
|
|
|
#define configGENERATE_RUN_TIME_STATS 0
|
|
#define configCHECK_FOR_STACK_OVERFLOW 0
|
|
|
/* Co-routine definitions. */
|
/* Co-routine definitions. */
|
|
#define configUSE_CO_ROUTINES 0
|
#define configMAX_CO_ROUTINE_PRIORITIES ( 2 )
|
#define configMAX_CO_ROUTINE_PRIORITIES ( 2 )
|
|
|
/* Set the following definitions to 1 to include the API function, or zero
|
/* Set the following definitions to 1 to include the API function, or zero
|
to exclude the API function. */
|
to exclude the API function. */
|
|
|