1
0
forked from fsfw/fsfw

freeRTOS corrections

This commit is contained in:
2020-08-08 12:38:39 +02:00
parent 979fea3400
commit af11c8fcf9
6 changed files with 14 additions and 13 deletions

View File

@ -40,9 +40,9 @@ public:
* The function pointer to the deadline missed function that shall
* be assigned.
*/
PeriodicTask(const char *name, TaskPriority setPriority,
PeriodicTask(TaskName name, TaskPriority setPriority,
TaskStackSize setStack, TaskPeriod setPeriod,
void (*setDeadlineMissedFunc)());
TaskDeadlineMissedFunction deadlineMissedFunc);
/**
* @brief Currently, the executed object's lifetime is not coupled with
* the task object's lifetime, so the destructor is empty.