Initial public release.
This commit is contained in:
parent
7b169e8116
commit
dac4af8d25
255 changed files with 68595 additions and 2 deletions
29
2020TPCApp1.cydsn/CONFIG/CONFIG_RTOS.h
Normal file
29
2020TPCApp1.cydsn/CONFIG/CONFIG_RTOS.h
Normal file
|
@ -0,0 +1,29 @@
|
|||
/** \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
|
Loading…
Add table
Add a link
Reference in a new issue