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#define INCLUDE_xTaskGetIdleTaskHandle 1
88
89/* Workaround for various notification issues:
90 * - First one used by system primitives
91 * - Second one by thread event notification
92 * - Third one by FuriEventLoop
93 */
94#define configTASK_NOTIFICATION_ARRAY_ENTRIES 3
95
96extern __attribute__((__noreturn__)) void furi_thread_catch(void);
97#define configTASK_RETURN_ADDRESS (furi_thread_catch + 2)
98
99/*
100 * The CMSIS-RTOS V2 FreeRTOS wrapper is dependent on the heap implementation used
101 * by the application thus the correct define need to be enabled below
102 */
103#define USE_FreeRTOS_HEAP_4
104
105/* Cortex-M specific definitions. */
106#ifdef __NVIC_PRIO_BITS
107/* __BVIC_PRIO_BITS will be specified when CMSIS is being used. */
108#define configPRIO_BITS __NVIC_PRIO_BITS
109#else
110#define configPRIO_BITS 4
111#endif
112
113/* The lowest interrupt priority that can be used in a call to a "set priority"
114function. */
115#define configLIBRARY_LOWEST_INTERRUPT_PRIORITY 15
116
117/* The highest interrupt priority that can be used by any interrupt service
118routine that makes calls to interrupt safe FreeRTOS API functions. DO NOT CALL
119INTERRUPT SAFE FREERTOS API FUNCTIONS FROM ANY INTERRUPT THAT HAS A HIGHER
120PRIORITY THAN THIS! (higher priorities are lower numeric values. */
121#define configLIBRARY_MAX_SYSCALL_INTERRUPT_PRIORITY 5
122
123/* Interrupt priorities used by the kernel port layer itself. These are generic
124to all Cortex-M ports, and do not rely on any particular library functions. */
125#define configKERNEL_INTERRUPT_PRIORITY \
126 (configLIBRARY_LOWEST_INTERRUPT_PRIORITY << (8 - configPRIO_BITS))
127
128/* !!!! configMAX_SYSCALL_INTERRUPT_PRIORITY must not be set to zero !!!!
129See http://www.FreeRTOS.org/RTOS-Cortex-M3-M4.html. */
130#define configMAX_SYSCALL_INTERRUPT_PRIORITY \
131 (configLIBRARY_MAX_SYSCALL_INTERRUPT_PRIORITY << (8 - configPRIO_BITS))
132
133/* Definitions that map the FreeRTOS port interrupt handlers to their CMSIS
134standard names. */
135#define vPortSVCHandler SVC_Handler
136#define xPortPendSVHandler PendSV_Handler
137
138#define traceTASK_SWITCHED_IN() \
139 extern void furi_hal_mpu_set_stack_protection(uint32_t* stack); \
140 furi_hal_mpu_set_stack_protection((uint32_t*)pxCurrentTCB->pxStack); \
141 errno = pxCurrentTCB->iTaskErrno
142// ^^^^^ acquire errno directly from TCB because FreeRTOS assigns its `FreeRTOS_errno' _after_ our hook is called
143
144// 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
145#define traceTASK_SWITCHED_OUT() FreeRTOS_errno = errno
146
147/* Normal assert() semantics without relying on the provision of an assert.h
148header file. */
149#ifdef DEBUG
150#define configASSERT(x) \
151 if((x) == 0) { \
152 furi_crash("FreeRTOS Assert"); \
153 }
154#endif
155
156// Must be last line of config because of recursion
157#include <core/check.h>
Furi crash and assert functions.