uc-sdk
 All Classes Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
FreeRTOSConfig.h
Go to the documentation of this file.
1 #ifndef FREERTOS_CONFIG_H
2 #define FREERTOS_CONFIG_H
3 
4 #include "LPC17xx.h"
5 
6 #define configUSE_PREEMPTION 1
7 #define configUSE_IDLE_HOOK 1
8 #define configMAX_PRIORITIES ( ( unsigned portBASE_TYPE ) 5 )
9 #define configUSE_TICK_HOOK 1
10 #define configCPU_CLOCK_HZ ( SystemCoreClock )
11 #define configTICK_RATE_HZ ( ( portTickType ) 1000 )
12 #define configMINIMAL_STACK_SIZE ( ( unsigned short ) 128 )
13 #define configTOTAL_HEAP_SIZE ( ( size_t ) ( 19 * 1024 ) )
14 #define configMAX_TASK_NAME_LEN ( 12 )
15 #define configUSE_TRACE_FACILITY 0
16 #define configUSE_16_BIT_TICKS 0
17 #define configIDLE_SHOULD_YIELD 1
18 #define configUSE_CO_ROUTINES 0
19 #define configUSE_MUTEXES 1
20 #define configUSE_NEWLIB_REENTRANT 1
21 
22 #define configMAX_CO_ROUTINE_PRIORITIES ( 2 )
23 
24 #define configUSE_COUNTING_SEMAPHORES 0
25 #define configUSE_ALTERNATIVE_API 0
26 #define configCHECK_FOR_STACK_OVERFLOW 2
27 #define configUSE_RECURSIVE_MUTEXES 1
28 #define configQUEUE_REGISTRY_SIZE 10
29 #define configGENERATE_RUN_TIME_STATS 1
30 
31 #define INCLUDE_vTaskPrioritySet 1
32 #define INCLUDE_uxTaskPriorityGet 1
33 #define INCLUDE_vTaskDelete 1
34 #define INCLUDE_vTaskCleanUpResources 0
35 #define INCLUDE_vTaskSuspend 1
36 #define INCLUDE_vTaskDelayUntil 1
37 #define INCLUDE_vTaskDelay 1
38 #define INCLUDE_uxTaskGetStackHighWaterMark 1
39 
40 /* Use the system definition, if there is one */
41 #ifdef __NVIC_PRIO_BITS
42  #define configPRIO_BITS __NVIC_PRIO_BITS
43 #else
44  #define configPRIO_BITS 5 /* 32 priority levels */
45 #endif
46 
47 /* The lowest priority. */
48 #define configKERNEL_INTERRUPT_PRIORITY ( 31 << (8 - configPRIO_BITS) )
49 /* Priority 5, or 160 as only the top three bits are implemented. */
50 #define configMAX_SYSCALL_INTERRUPT_PRIORITY ( 5 << (8 - configPRIO_BITS) )
51 
52 /* Priorities passed to NVIC_SetPriority() do not require shifting as the
53 function does the shifting itself. Note these priorities need to be equal to
54 or lower than configMAX_SYSCALL_INTERRUPT_PRIORITY - therefore the numeric
55 value needs to be equal to or greater than 5 (on the Cortex M3 the lower the
56 numeric value the higher the interrupt priority). */
57 #define configEMAC_INTERRUPT_PRIORITY 5
58 #define configUSB_INTERRUPT_PRIORITY 6
59 
60 /*-----------------------------------------------------------
61  * Macros required to setup the timer for the run time stats.
62  *-----------------------------------------------------------*/
63 extern void vConfigureTimerForRunTimeStats( void );
64 #define portCONFIGURE_TIMER_FOR_RUN_TIME_STATS() vConfigureTimerForRunTimeStats()
65 #define portGET_RUN_TIME_COUNTER_VALUE() (LPC_TIM0->TC)
66 
67 #endif /* FREERTOS_CONFIG_H */