Flipper Zero Firmware
Loading...
Searching...
No Matches
FreeRTOSConfig.h
1#pragma once
2
3#if defined(__ICCARM__) || defined(__CC_ARM) || defined(__GNUC__)
4#include <stdint.h>
5#include <errno.h>
6#pragma GCC diagnostic ignored "-Wredundant-decls"
7#endif
8
9#ifndef CMSIS_device_header
10#define CMSIS_device_header "stm32wbxx.h"
11#endif /* CMSIS_device_header */
12
13#include CMSIS_device_header
14
15#define configENABLE_FPU 1
16#define configENABLE_MPU 0
17
18#define configUSE_PREEMPTION 1
19#define configSUPPORT_STATIC_ALLOCATION 1
20#define configSUPPORT_DYNAMIC_ALLOCATION 0
21#define configUSE_MALLOC_FAILED_HOOK 0
22#define configUSE_IDLE_HOOK 0
23#define configUSE_TICK_HOOK 0
24#define configCPU_CLOCK_HZ (SystemCoreClock)
25#define configTICK_RATE_HZ_RAW 1000
26#define configTICK_RATE_HZ ((TickType_t)configTICK_RATE_HZ_RAW)
27#define configUSE_16_BIT_TICKS 0
28#define configMAX_PRIORITIES (32)
29#define configMINIMAL_STACK_SIZE ((uint16_t)128)
30#define configUSE_POSIX_ERRNO 1
31
32/* Heap size determined automatically by linker */
33// #define configTOTAL_HEAP_SIZE ((size_t)0)
34#define configMAX_TASK_NAME_LEN (32)
35
36#define configGENERATE_RUN_TIME_STATS 1
37#define portGET_RUN_TIME_COUNTER_VALUE() (DWT->CYCCNT)
38#define portCONFIGURE_TIMER_FOR_RUN_TIME_STATS()
39
40#define configUSE_TRACE_FACILITY 1
41#define configUSE_MUTEXES 1
42#define configQUEUE_REGISTRY_SIZE 0
43#define configCHECK_FOR_STACK_OVERFLOW 0
44#define configUSE_RECURSIVE_MUTEXES 1
45#define configUSE_COUNTING_SEMAPHORES 1
46#define configENABLE_BACKWARD_COMPATIBILITY 0
47#define configUSE_PORT_OPTIMISED_TASK_SELECTION 1
48#define configUSE_TICKLESS_IDLE 2
49#define configRECORD_STACK_HIGH_ADDRESS 1
50#define configUSE_NEWLIB_REENTRANT 0
51
52/* Defaults to size_t for backward compatibility, but can be changed
53 if lengths will always be less than the number of bytes in a size_t. */
54#define configMESSAGE_BUFFER_LENGTH_TYPE size_t
55#define configNUM_THREAD_LOCAL_STORAGE_POINTERS 1
56#define configEXPECTED_IDLE_TIME_BEFORE_SLEEP 4
57
58/* Co-routine definitions. */
59#define configUSE_CO_ROUTINES 0
60
61/* Software timer definitions. */
62#define configUSE_TIMERS 1
63#define configTIMER_TASK_PRIORITY (2)
64#define configTIMER_QUEUE_LENGTH 32
65#define configTIMER_TASK_STACK_DEPTH 256
66#define configTIMER_SERVICE_TASK_NAME "TimersSrv"
67
68#define configIDLE_TASK_NAME "(-_-)"
69#define configIDLE_TASK_STACK_DEPTH 128
70
71/* Set the following definitions to 1 to include the API function, or zero
72to exclude the API function. */
73#define INCLUDE_xTaskGetHandle 1
74#define INCLUDE_eTaskGetState 1
75#define INCLUDE_uxTaskGetStackHighWaterMark 1
76#define INCLUDE_uxTaskPriorityGet 1
77#define INCLUDE_vTaskCleanUpResources 0
78#define INCLUDE_vTaskDelay 1
79#define INCLUDE_vTaskDelayUntil 1
80#define INCLUDE_vTaskDelete 1
81#define INCLUDE_vTaskPrioritySet 1
82#define INCLUDE_vTaskSuspend 1
83#define INCLUDE_xQueueGetMutexHolder 1
84#define INCLUDE_xTaskGetCurrentTaskHandle 1
85#define INCLUDE_xTaskGetSchedulerState 1
86#define INCLUDE_xTimerPendFunctionCall 1
87
88/* Workaround for various notification issues:
89 * - First one used by system primitives
90 * - Second one by thread event notification
91 * - Third one by FuriEventLoop
92 */
93#define configTASK_NOTIFICATION_ARRAY_ENTRIES 3
94
95extern __attribute__((__noreturn__)) void furi_thread_catch(void);
96#define configTASK_RETURN_ADDRESS (furi_thread_catch + 2)
97
98/*
99 * The CMSIS-RTOS V2 FreeRTOS wrapper is dependent on the heap implementation used
100 * by the application thus the correct define need to be enabled below
101 */
102#define USE_FreeRTOS_HEAP_4
103
104/* Cortex-M specific definitions. */
105#ifdef __NVIC_PRIO_BITS
106/* __BVIC_PRIO_BITS will be specified when CMSIS is being used. */
107#define configPRIO_BITS __NVIC_PRIO_BITS
108#else
109#define configPRIO_BITS 4
110#endif
111
112/* The lowest interrupt priority that can be used in a call to a "set priority"
113function. */
114#define configLIBRARY_LOWEST_INTERRUPT_PRIORITY 15
115
116/* The highest interrupt priority that can be used by any interrupt service
117routine that makes calls to interrupt safe FreeRTOS API functions. DO NOT CALL
118INTERRUPT SAFE FREERTOS API FUNCTIONS FROM ANY INTERRUPT THAT HAS A HIGHER
119PRIORITY THAN THIS! (higher priorities are lower numeric values. */
120#define configLIBRARY_MAX_SYSCALL_INTERRUPT_PRIORITY 5
121
122/* Interrupt priorities used by the kernel port layer itself. These are generic
123to all Cortex-M ports, and do not rely on any particular library functions. */
124#define configKERNEL_INTERRUPT_PRIORITY \
125 (configLIBRARY_LOWEST_INTERRUPT_PRIORITY << (8 - configPRIO_BITS))
126
127/* !!!! configMAX_SYSCALL_INTERRUPT_PRIORITY must not be set to zero !!!!
128See http://www.FreeRTOS.org/RTOS-Cortex-M3-M4.html. */
129#define configMAX_SYSCALL_INTERRUPT_PRIORITY \
130 (configLIBRARY_MAX_SYSCALL_INTERRUPT_PRIORITY << (8 - configPRIO_BITS))
131
132/* Normal assert() semantics without relying on the provision of an assert.h
133header file. */
134#ifdef DEBUG
135#include <core/check.h>
136#define configASSERT(x) \
137 if((x) == 0) { \
138 furi_crash("FreeRTOS Assert"); \
139 }
140#endif
141
142/* Definitions that map the FreeRTOS port interrupt handlers to their CMSIS
143standard names. */
144#define vPortSVCHandler SVC_Handler
145#define xPortPendSVHandler PendSV_Handler
146
147#define USE_CUSTOM_SYSTICK_HANDLER_IMPLEMENTATION 1
148#define configOVERRIDE_DEFAULT_TICK_CONFIGURATION \
149 1 /* required only for Keil but does not hurt otherwise */
150
151#define traceTASK_SWITCHED_IN() \
152 extern void furi_hal_mpu_set_stack_protection(uint32_t* stack); \
153 furi_hal_mpu_set_stack_protection((uint32_t*)pxCurrentTCB->pxStack); \
154 errno = pxCurrentTCB->iTaskErrno
155// ^^^^^ acquire errno directly from TCB because FreeRTOS assigns its `FreeRTOS_errno' _after_ our hook is called
156
157// referencing `FreeRTOS_errno' here vvvvv because FreeRTOS calls our hook _before_ copying the value into the TCB, hence a manual write to the TCB would get overwritten
158#define traceTASK_SWITCHED_OUT() FreeRTOS_errno = errno
159
160#define portCLEAN_UP_TCB(pxTCB) \
161 extern void furi_thread_cleanup_tcb_event(TaskHandle_t task); \
162 furi_thread_cleanup_tcb_event(pxTCB)
Furi crash and assert functions.