GM6000 Digital Heater Controller Branch: main
SDX-1330
FreeRTOSConfig_bsp.h
1#ifndef FREERTOSCONFIG_BSP_H
2#define FREERTOSCONFIG_BSP_H
3/*
4 VISIT http://www.FreeRTOS.org TO ENSURE YOU ARE USING THE LATEST VERSION.
5
6 ***************************************************************************
7 * *
8 * FreeRTOS provides completely free yet professionally developed, *
9 * robust, strictly quality controlled, supported, and cross *
10 * platform software that has become a de facto standard. *
11 * *
12 * Help yourself get started quickly and support the FreeRTOS *
13 * project by purchasing a FreeRTOS tutorial book, reference *
14 * manual, or both from: http://www.FreeRTOS.org/Documentation *
15 * *
16 * Thank you! *
17 * *
18 ***************************************************************************
19
20 This file is part of the FreeRTOS distribution.
21
22 FreeRTOS is free software; you can redistribute it and/or modify it under
23 the terms of the GNU General Public License (version 2) as published by the
24 Free Software Foundation >>!AND MODIFIED BY!<< the FreeRTOS exception.
25
26 >>! NOTE: The modification to the GPL is included to allow you to !<<
27 >>! distribute a combined work that includes FreeRTOS without being !<<
28 >>! obliged to provide the source code for proprietary components !<<
29 >>! outside of the FreeRTOS kernel. !<<
30
31 FreeRTOS is distributed in the hope that it will be useful, but WITHOUT ANY
32 WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
33 FOR A PARTICULAR PURPOSE. Full license text is available from the following
34 link: http://www.freertos.org/a00114.html
35
36 1 tab == 4 spaces!
37
38 ***************************************************************************
39 * *
40 * Having a problem? Start by reading the FAQ "My application does *
41 * not run, what could be wrong?" *
42 * *
43 * http://www.FreeRTOS.org/FAQHelp.html *
44 * *
45 ***************************************************************************
46
47 http://www.FreeRTOS.org - Documentation, books, training, latest versions,
48 license and Real Time Engineers Ltd. contact details.
49
50 http://www.FreeRTOS.org/plus - A selection of FreeRTOS ecosystem products,
51 including FreeRTOS+Trace - an indispensable productivity tool, a DOS
52 compatible FAT file system, and our tiny thread aware UDP/IP stack.
53
54 http://www.OpenRTOS.com - Real Time Engineers ltd license FreeRTOS to High
55 Integrity Systems to sell under the OpenRTOS brand. Low cost OpenRTOS
56 licenses offer ticketed support, indemnification and middleware.
57
58 http://www.SafeRTOS.com - High Integrity Systems also provide a safety
59 engineered and independently SIL3 certified version for use in safety and
60 mission critical applications that require provable dependability.
61
62 1 tab == 4 spaces!
63*/
64
65#if defined(__GNUC__) || defined(__ICCARM__)
66/* Important: put #includes here unless they are also meant for the assembler.
67 */
68#include <stdint.h>
69void assert_triggered( const char *file, uint32_t line );
70#endif
71
72#define configENABLE_FPU 1
73#define configENABLE_MPU 0
74#define configMINIMAL_STACK_SIZE ((uint16_t)768)
75#define configTOTAL_HEAP_SIZE ((size_t)65536)
76
77
78#define configCPU_CLOCK_HZ (F_CPU) // Set at compile time
79#define configMAX_PRIORITIES (8)
80#define configUSE_MUTEXES 1
81#define configUSE_COUNTING_SEMAPHORES 1
82#define FREERTOS_ADVANCED_CONFIG 0
83#define configUSE_PREEMPTION 1
84#define configUSE_RECURSIVE_MUTEXES 1
85#define configGENERATE_RUN_TIME_STATS 0
86#define configUSE_16_BIT_TICKS 0
87#define configCHECK_FOR_STACK_OVERFLOW 0
88#define configRECORD_STACK_HIGH_ADDRESS 0
89#define configUSE_MALLOC_FAILED_HOOK 0
90#define configUSE_IDLE_HOOK 0
91#define configUSE_TICK_HOOK 0
92#define configUSE_TICKLESS_IDLE 0
93#define configUSE_TRACE_FACILITY 1
94#define configUSE_STATS_FORMATTING_FUNCTIONS 1
95#define configUSE_PORT_OPTIMISED_TASK_SELECTION 0
96#define configUSE_APPLICATION_TASK_TAG 1
97#define configUSE_CO_ROUTINES 0
98#define configMAX_CO_ROUTINE_PRIORITIES (2)
99#define configTICK_RATE_HZ ((TickType_t)1000)
100#define configUSE_TIMERS 0
101#define configTIMER_TASK_PRIORITY (2)
102#define configTIMER_QUEUE_LENGTH 2
103#define configTIMER_TASK_STACK_DEPTH (64)
104#define configPRIO_BITS 3
105#define configMAX_TASK_NAME_LEN (16)
106#define configIDLE_SHOULD_YIELD 1
107#define configQUEUE_REGISTRY_SIZE 0
108#define configUSE_QUEUE_SETS 0
109#define configENABLE_BACKWARD_COMPATIBILITY 1
110
111/* Set the following definitions to 1 to include the API function, or zero
112to exclude the API function. */
113#define INCLUDE_vTaskPrioritySet 1
114#define INCLUDE_uxTaskPriorityGet 1
115#define INCLUDE_vTaskDelete 1
116#define INCLUDE_vTaskSuspend 1
117#define INCLUDE_xResumeFromISR 1
118#define INCLUDE_vTaskDelayUntil 1
119#define INCLUDE_vTaskDelay 1
120#define INCLUDE_xTaskGetSchedulerState 1
121#define INCLUDE_xTaskGetCurrentTaskHandle 1
122#define INCLUDE_uxTaskGetStackHighWaterMark 1
123#define INCLUDE_xTaskGetIdleTaskHandle 1
124#define INCLUDE_xTimerGetTimerDaemonTaskHandle 0
125#define INCLUDE_pcTaskGetTaskName 1
126#define INCLUDE_eTaskGetState 1
127#define INCLUDE_vTaskCleanUpResources 0
128#define INCLUDE_xTimerPendFunctionCall 0
129#define INCLUDE_xEventGroupSetBitFromISR 1
130
131
132/* Definitions that map the FreeRTOS port interrupt handlers to their CMSIS
133standard names - or at least those used in the unmodified vector table. */
134#define vPortSVCHandler SVC_Handler
135#define xPortPendSVHandler PendSV_Handler
136#define xPortSysTickHandler SysTick_Handler
137
138
139/* Used when configGENERATE_RUN_TIME_STATS is 1. */
140#if configGENERATE_RUN_TIME_STATS
141extern void vConfigureTimerForRunTimeStats( void );
142extern uint32_t vGetRunTimeCounterValue( void );
143#define portCONFIGURE_TIMER_FOR_RUN_TIME_STATS() vConfigureTimerForRunTimeStats()
144#define portGET_RUN_TIME_COUNTER_VALUE() vGetRunTimeCounterValue()
145#endif
146
147/* The lowest interrupt priority that can be used in a call to a "set priority"
148function. */
149#define configLIBRARY_LOWEST_INTERRUPT_PRIORITY 0x07
150
151/* The highest interrupt priority that can be used by any interrupt service
152routine that makes calls to interrupt safe FreeRTOS API functions. DO NOT CALL
153INTERRUPT SAFE FREERTOS API FUNCTIONS FROM ANY INTERRUPT THAT HAS A HIGHER
154PRIORITY THAN THIS! (higher priorities are lower numeric values. */
155#define configLIBRARY_MAX_SYSCALL_INTERRUPT_PRIORITY 4
156
157/* Interrupt priorities used by the kernel port layer itself. These are generic
158to all Cortex-M ports, and do not rely on any particular library functions. */
159#define configKERNEL_INTERRUPT_PRIORITY (configLIBRARY_LOWEST_INTERRUPT_PRIORITY << (8 - configPRIO_BITS))
160#define configMAX_SYSCALL_INTERRUPT_PRIORITY (configLIBRARY_MAX_SYSCALL_INTERRUPT_PRIORITY << (8 - configPRIO_BITS))
161
162/* Normal assert() semantics without relying on the provision of an assert.h
163 header file. */
164#define configASSERT( x ) if ((x) == 0) {taskDISABLE_INTERRUPTS(); for( ;; );}
165
166#endif /* FREERTOSCONFIG_BSP_H */