Index: firmware/App/Tasks/TaskPriority.h =================================================================== diff -u -rabb9687e52d9db5df1abe7626ba04a6d431ba823 -radea34db9066bdc0dbb20f49bdf66c9331a7037c --- firmware/App/Tasks/TaskPriority.h (.../TaskPriority.h) (revision abb9687e52d9db5df1abe7626ba04a6d431ba823) +++ firmware/App/Tasks/TaskPriority.h (.../TaskPriority.h) (revision adea34db9066bdc0dbb20f49bdf66c9331a7037c) @@ -1,15 +1,25 @@ -/* - * 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 + +#define TASK_PRIORITY_INTERVAL (10) ///< Priority task timer interrupt interval (in ms). + +// Public function prototypes + void taskPriority( void ); +/**@}*/ + #endif