Loading...
Searching...
No Matches
Go to the documentation of this file. 1#ifndef KEST_DESKTOP_FREERTOS_CONFIG_H_
2#define KEST_DESKTOP_FREERTOS_CONFIG_H_
4#define configUSE_PREEMPTION 1
5#define configUSE_IDLE_HOOK 0
6#define configUSE_TICK_HOOK 1
7#define configCPU_CLOCK_HZ 1000000
8#define configTICK_RATE_HZ 1000
9#define configMAX_PRIORITIES 5
10#define configMINIMAL_STACK_SIZE 1024
11#define configTOTAL_HEAP_SIZE (1024 * 1024)
12#define configMAX_TASK_NAME_LEN 16
13#define configUSE_MUTEXES 1
14#define configUSE_COUNTING_SEMAPHORES 1
15#define configUSE_TIMERS 1
16#define configSUPPORT_DYNAMIC_ALLOCATION 1
17#define configSUPPORT_STATIC_ALLOCATION 0
19#define configCHECK_FOR_STACK_OVERFLOW 2
20#define configUSE_MALLOC_FAILED_HOOK 1
22#define configKERNEL_INTERRUPT_PRIORITY 255
23#define configMAX_SYSCALL_INTERRUPT_PRIORITY 191
25#define configUSE_TICK_HOOK 1
27#define configTICK_TYPE_WIDTH_IN_BITS TICK_TYPE_WIDTH_32_BITS
29#define configTIMER_TASK_PRIORITY 2
30#define configTIMER_QUEUE_LENGTH 10
31#define configTIMER_TASK_STACK_DEPTH 2048
33#define INCLUDE_vTaskDelay 1
34#define INCLUDE_vTaskDelete 1
35#define INCLUDE_xTaskDelayUntil 1
37#define configUSE_RECURSIVE_MUTEXES 1
38#define configSUPPORT_DYNAMIC_ALLOCATION 1