Imt.Base C++ API V4.1.1.0
Loading...
Searching...
No Matches
FreeRTOSConfig.h
Go to the documentation of this file.
1// (c) IMT - Information Management Technology AG, CH-9470 Buchs, www.imt.ch.
2
3#ifndef FREERTOS_CONFIG_H
4#define FREERTOS_CONFIG_H
5
11// AXIVION FILE Style AutosarC++19_03-A2.8.1: File provides global configuration constants and defines.
12
13// Imt.Base required configurations
15
16// AXIVION FILE Style AutosarC++19_03-A16.0.1: precompiler decision required
17
18// User application defines
19#define configMAX_TASK_NAME_LEN 16
20
21// Cortex-M specific definitions.
22#define configPRIO_BITS 4
23
25// Interrupt priorities used by the kernel port layer itself. These are generic
26// to all Cortex-M ports, and do not rely on any particular library functions.
27#define configKERNEL_INTERRUPT_PRIORITY 255
28// configMAX_SYSCALL_INTERRUPT_PRIORITY must not be set to zero
29// See http://www.FreeRTOS.org/RTOS-Cortex-M3-M4.html.
30#define configMAX_SYSCALL_INTERRUPT_PRIORITY 191
31
33#define configTICK_RATE_HZ 1000
34#define configCPU_CLOCK_HZ 8000000
35
36// Dataflow Active Part architecture is designed as run-to-completion. A
37// preemption scheduler can be used with given ExecutableConfiguration in each
38// Active Part but cooperative scheduler uses less memory and is for most application
39// a the right choice.
40#define configUSE_PREEMPTION 0
41
42// Definitions that map the FreeRTOS port interrupt handlers to
43// Dataflow handler. See HAL Implementation for detaild information.
44#define vPortSVCHandler SVC_Handler
45#define xPortPendSVHandler PendSV_Handler
46
47#endif // FREERTOS_CONFIG_H