Macros | Variables
FreeRTOSConfig.h File Reference
#include "board.h"
#include "sysclk.h"
#include "../drivers/d_time.h"
#include "../../../../src/data_sets.h"
Include dependency graph for FreeRTOSConfig.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Macros

#define configASSERT(x)   if( ( x ) == 0 ) { taskDISABLE_INTERRUPTS(); for( ;; ); }
 
#define configCHECK_FOR_STACK_OVERFLOW   2
 
#define configCPU_CLOCK_HZ   ( sysclk_get_cpu_hz() )
 
#define configGENERATE_RUN_TIME_STATS   1 /* http://www.freertos.org/rtos-run-time-stats.html */
 
#define configIDLE_SHOULD_YIELD   1
 
#define configKERNEL_INTERRUPT_PRIORITY   ( configLIBRARY_LOWEST_INTERRUPT_PRIORITY << (8 - configPRIO_BITS) )
 
#define configLIBRARY_LOWEST_INTERRUPT_PRIORITY   0x07
 
#define configLIBRARY_MAX_SYSCALL_INTERRUPT_PRIORITY   4
 
#define configMAX_CO_ROUTINE_PRIORITIES   ( 2 )
 
#define configMAX_PRIORITIES   ( 10 )
 
#define configMAX_SYSCALL_INTERRUPT_PRIORITY   ( configLIBRARY_MAX_SYSCALL_INTERRUPT_PRIORITY << (8 - configPRIO_BITS) )
 
#define configMAX_TASK_NAME_LEN   ( 10 )
 
#define configMINIMAL_STACK_SIZE   ( ( unsigned short ) 130 )
 
#define configPRIO_BITS   3 /* 7 priority levels */
 
#define configQUEUE_REGISTRY_SIZE   8
 
#define configTICK_RATE_HZ   ( 1000 )
 
#define configTIMER_QUEUE_LENGTH   5
 
#define configTIMER_TASK_PRIORITY   ( configMAX_PRIORITIES - 1 )
 
#define configTIMER_TASK_STACK_DEPTH   ( configMINIMAL_STACK_SIZE * 2 )
 
#define configTOTAL_HEAP_SIZE   262144
 
#define configUSE_16_BIT_TICKS   0
 
#define configUSE_APPLICATION_TASK_TAG   0
 
#define configUSE_CO_ROUTINES   0
 
#define configUSE_COUNTING_SEMAPHORES   1
 
#define configUSE_IDLE_HOOK   1
 
#define configUSE_MALLOC_FAILED_HOOK   1
 
#define configUSE_MUTEXES   1
 
#define configUSE_PORT_OPTIMISED_TASK_SELECTION   1
 
#define configUSE_PREEMPTION   1
 
#define configUSE_QUEUE_SETS   1
 
#define configUSE_RECURSIVE_MUTEXES   1
 
#define configUSE_STATS_FORMATTING_FUNCTIONS   1
 
#define configUSE_TICK_HOOK   0
 
#define configUSE_TICKLESS_IDLE   0
 
#define configUSE_TIMERS   1
 
#define configUSE_TRACE_FACILITY   1
 
#define INCLUDE_eTaskGetState   1
 
#define INCLUDE_uxTaskGetStackHighWaterMark   1
 
#define INCLUDE_uxTaskPriorityGet   1
 
#define INCLUDE_vTaskCleanUpResources   1
 
#define INCLUDE_vTaskDelay   1
 
#define INCLUDE_vTaskDelayUntil   1
 
#define INCLUDE_vTaskDelete   1
 
#define INCLUDE_vTaskPrioritySet   1
 
#define INCLUDE_vTaskSuspend   1
 
#define INCLUDE_xTimerPendFunctionCall   1
 
#define portCONFIGURE_TIMER_FOR_RUN_TIME_STATS()   time_init()
 
#define portGET_RUN_TIME_COUNTER_VALUE()   ((uint32_t)time_ticks())
 
#define traceFREE(pvAddress, uiSize)   g_rtos.freeSize += uiSize
 
#define traceMALLOC(pvAddress, uiSize)   g_rtos.mallocSize += uiSize
 
#define vPortSVCHandler   SVC_Handler
 
#define xPortPendSVHandler   PendSV_Handler
 
#define xPortSysTickHandler   SysTick_Handler
 

Variables

evb_rtos_info_t g_rtos
 

Macro Definition Documentation

◆ configASSERT

#define configASSERT (   x)    if( ( x ) == 0 ) { taskDISABLE_INTERRUPTS(); for( ;; ); }

Definition at line 151 of file FreeRTOSConfig.h.

◆ configCHECK_FOR_STACK_OVERFLOW

#define configCHECK_FOR_STACK_OVERFLOW   2

Definition at line 74 of file FreeRTOSConfig.h.

◆ configCPU_CLOCK_HZ

#define configCPU_CLOCK_HZ   ( sysclk_get_cpu_hz() )

Definition at line 61 of file FreeRTOSConfig.h.

◆ configGENERATE_RUN_TIME_STATS

#define configGENERATE_RUN_TIME_STATS   1 /* http://www.freertos.org/rtos-run-time-stats.html */

Definition at line 86 of file FreeRTOSConfig.h.

◆ configIDLE_SHOULD_YIELD

#define configIDLE_SHOULD_YIELD   1

Definition at line 71 of file FreeRTOSConfig.h.

◆ configKERNEL_INTERRUPT_PRIORITY

#define configKERNEL_INTERRUPT_PRIORITY   ( configLIBRARY_LOWEST_INTERRUPT_PRIORITY << (8 - configPRIO_BITS) )

Definition at line 144 of file FreeRTOSConfig.h.

◆ configLIBRARY_LOWEST_INTERRUPT_PRIORITY

#define configLIBRARY_LOWEST_INTERRUPT_PRIORITY   0x07

Definition at line 134 of file FreeRTOSConfig.h.

◆ configLIBRARY_MAX_SYSCALL_INTERRUPT_PRIORITY

#define configLIBRARY_MAX_SYSCALL_INTERRUPT_PRIORITY   4

Definition at line 140 of file FreeRTOSConfig.h.

◆ configMAX_CO_ROUTINE_PRIORITIES

#define configMAX_CO_ROUTINE_PRIORITIES   ( 2 )

Definition at line 100 of file FreeRTOSConfig.h.

◆ configMAX_PRIORITIES

#define configMAX_PRIORITIES   ( 10 )

Definition at line 63 of file FreeRTOSConfig.h.

◆ configMAX_SYSCALL_INTERRUPT_PRIORITY

#define configMAX_SYSCALL_INTERRUPT_PRIORITY   ( configLIBRARY_MAX_SYSCALL_INTERRUPT_PRIORITY << (8 - configPRIO_BITS) )

Definition at line 147 of file FreeRTOSConfig.h.

◆ configMAX_TASK_NAME_LEN

#define configMAX_TASK_NAME_LEN   ( 10 )

Definition at line 68 of file FreeRTOSConfig.h.

◆ configMINIMAL_STACK_SIZE

#define configMINIMAL_STACK_SIZE   ( ( unsigned short ) 130 )

Definition at line 64 of file FreeRTOSConfig.h.

◆ configPRIO_BITS

#define configPRIO_BITS   3 /* 7 priority levels */

Definition at line 129 of file FreeRTOSConfig.h.

◆ configQUEUE_REGISTRY_SIZE

#define configQUEUE_REGISTRY_SIZE   8

Definition at line 73 of file FreeRTOSConfig.h.

◆ configTICK_RATE_HZ

#define configTICK_RATE_HZ   ( 1000 )

Definition at line 62 of file FreeRTOSConfig.h.

◆ configTIMER_QUEUE_LENGTH

#define configTIMER_QUEUE_LENGTH   5

Definition at line 105 of file FreeRTOSConfig.h.

◆ configTIMER_TASK_PRIORITY

#define configTIMER_TASK_PRIORITY   ( configMAX_PRIORITIES - 1 )

Definition at line 104 of file FreeRTOSConfig.h.

◆ configTIMER_TASK_STACK_DEPTH

#define configTIMER_TASK_STACK_DEPTH   ( configMINIMAL_STACK_SIZE * 2 )

Definition at line 106 of file FreeRTOSConfig.h.

◆ configTOTAL_HEAP_SIZE

#define configTOTAL_HEAP_SIZE   262144

Definition at line 66 of file FreeRTOSConfig.h.

◆ configUSE_16_BIT_TICKS

#define configUSE_16_BIT_TICKS   0

Definition at line 70 of file FreeRTOSConfig.h.

◆ configUSE_APPLICATION_TASK_TAG

#define configUSE_APPLICATION_TASK_TAG   0

Definition at line 77 of file FreeRTOSConfig.h.

◆ configUSE_CO_ROUTINES

#define configUSE_CO_ROUTINES   0

Definition at line 99 of file FreeRTOSConfig.h.

◆ configUSE_COUNTING_SEMAPHORES

#define configUSE_COUNTING_SEMAPHORES   1

Definition at line 78 of file FreeRTOSConfig.h.

◆ configUSE_IDLE_HOOK

#define configUSE_IDLE_HOOK   1

Definition at line 58 of file FreeRTOSConfig.h.

◆ configUSE_MALLOC_FAILED_HOOK

#define configUSE_MALLOC_FAILED_HOOK   1

Definition at line 76 of file FreeRTOSConfig.h.

◆ configUSE_MUTEXES

#define configUSE_MUTEXES   1

Definition at line 72 of file FreeRTOSConfig.h.

◆ configUSE_PORT_OPTIMISED_TASK_SELECTION

#define configUSE_PORT_OPTIMISED_TASK_SELECTION   1

Definition at line 56 of file FreeRTOSConfig.h.

◆ configUSE_PREEMPTION

#define configUSE_PREEMPTION   1

Definition at line 55 of file FreeRTOSConfig.h.

◆ configUSE_QUEUE_SETS

#define configUSE_QUEUE_SETS   1

Definition at line 57 of file FreeRTOSConfig.h.

◆ configUSE_RECURSIVE_MUTEXES

#define configUSE_RECURSIVE_MUTEXES   1

Definition at line 75 of file FreeRTOSConfig.h.

◆ configUSE_STATS_FORMATTING_FUNCTIONS

#define configUSE_STATS_FORMATTING_FUNCTIONS   1

Definition at line 96 of file FreeRTOSConfig.h.

◆ configUSE_TICK_HOOK

#define configUSE_TICK_HOOK   0

Definition at line 59 of file FreeRTOSConfig.h.

◆ configUSE_TICKLESS_IDLE

#define configUSE_TICKLESS_IDLE   0

Definition at line 83 of file FreeRTOSConfig.h.

◆ configUSE_TIMERS

#define configUSE_TIMERS   1

Definition at line 103 of file FreeRTOSConfig.h.

◆ configUSE_TRACE_FACILITY

#define configUSE_TRACE_FACILITY   1

Definition at line 69 of file FreeRTOSConfig.h.

◆ INCLUDE_eTaskGetState

#define INCLUDE_eTaskGetState   1

Definition at line 117 of file FreeRTOSConfig.h.

◆ INCLUDE_uxTaskGetStackHighWaterMark

#define INCLUDE_uxTaskGetStackHighWaterMark   1

Definition at line 89 of file FreeRTOSConfig.h.

◆ INCLUDE_uxTaskPriorityGet

#define INCLUDE_uxTaskPriorityGet   1

Definition at line 111 of file FreeRTOSConfig.h.

◆ INCLUDE_vTaskCleanUpResources

#define INCLUDE_vTaskCleanUpResources   1

Definition at line 113 of file FreeRTOSConfig.h.

◆ INCLUDE_vTaskDelay

#define INCLUDE_vTaskDelay   1

Definition at line 116 of file FreeRTOSConfig.h.

◆ INCLUDE_vTaskDelayUntil

#define INCLUDE_vTaskDelayUntil   1

Definition at line 115 of file FreeRTOSConfig.h.

◆ INCLUDE_vTaskDelete

#define INCLUDE_vTaskDelete   1

Definition at line 112 of file FreeRTOSConfig.h.

◆ INCLUDE_vTaskPrioritySet

#define INCLUDE_vTaskPrioritySet   1

Definition at line 110 of file FreeRTOSConfig.h.

◆ INCLUDE_vTaskSuspend

#define INCLUDE_vTaskSuspend   1

Definition at line 114 of file FreeRTOSConfig.h.

◆ INCLUDE_xTimerPendFunctionCall

#define INCLUDE_xTimerPendFunctionCall   1

Definition at line 118 of file FreeRTOSConfig.h.

◆ portCONFIGURE_TIMER_FOR_RUN_TIME_STATS

#define portCONFIGURE_TIMER_FOR_RUN_TIME_STATS ( )    time_init()

Definition at line 87 of file FreeRTOSConfig.h.

◆ portGET_RUN_TIME_COUNTER_VALUE

#define portGET_RUN_TIME_COUNTER_VALUE ( )    ((uint32_t)time_ticks())

Definition at line 88 of file FreeRTOSConfig.h.

◆ traceFREE

#define traceFREE (   pvAddress,
  uiSize 
)    g_rtos.freeSize += uiSize

Definition at line 122 of file FreeRTOSConfig.h.

◆ traceMALLOC

#define traceMALLOC (   pvAddress,
  uiSize 
)    g_rtos.mallocSize += uiSize

Definition at line 121 of file FreeRTOSConfig.h.

◆ vPortSVCHandler

#define vPortSVCHandler   SVC_Handler

Definition at line 157 of file FreeRTOSConfig.h.

◆ xPortPendSVHandler

#define xPortPendSVHandler   PendSV_Handler

Definition at line 156 of file FreeRTOSConfig.h.

◆ xPortSysTickHandler

#define xPortSysTickHandler   SysTick_Handler

Definition at line 158 of file FreeRTOSConfig.h.

Variable Documentation

◆ g_rtos

Definition at line 27 of file globals.c.



inertial_sense_ros
Author(s):
autogenerated on Sun Feb 28 2021 03:17:59