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