29 lines
494 B
C
29 lines
494 B
C
/** \file
|
|
* \brief This file configures the Real-Time Operating System (RTOS).
|
|
*/
|
|
|
|
#ifndef CONFIG_RTOS_H
|
|
#define CONFIG_RTOS_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
/* Include Files */
|
|
|
|
/* Preprocessor and Type Definitions */
|
|
|
|
/* Public Variables */
|
|
|
|
extern TaskHandle_t * const CONFIG_TaskHandles[];
|
|
extern const uint8_t CONFIG_N_TASK_HANDLES;
|
|
|
|
/* Public Functions */
|
|
void CONFIG_InitTasks(void);
|
|
void CONFIG_RunTasks(void);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif // CONFIG_RTOS_H
|