Index: firmware/App/Tasks/TaskPriority.h =================================================================== diff -u -rabb9687e52d9db5df1abe7626ba04a6d431ba823 -rc74c1d99a011dd0fb7f98f183faecda675221fce --- firmware/App/Tasks/TaskPriority.h (.../TaskPriority.h) (revision abb9687e52d9db5df1abe7626ba04a6d431ba823) +++ firmware/App/Tasks/TaskPriority.h (.../TaskPriority.h) (revision c74c1d99a011dd0fb7f98f183faecda675221fce) @@ -1,15 +1,23 @@ -/* - * TaskPriority.h - * - * Created on: Jul 31, 2024 - * Author: fw - */ #ifndef __TASKPRIORITY_H__ #define __TASKPRIORITY_H__ -#define TASK_PRIORITY_INTERVAL 10 +/** + * @defgroup TaskPriority TaskPriority + * @brief The priority task is called by RTI interrupt every 10 ms and performs + * high priority and/or urgent sensor/actuator processing as well as the + * interface to the FPGA. + * + * @addtogroup TaskPriority + * @{ + */ +// Public definitions + +// Public function prototypes + void taskPriority( void ); +/**@}*/ + #endif