1
0
forked from fsfw/fsfw

added overflow checking for periodic task

This commit is contained in:
2020-06-23 01:10:19 +02:00
parent a82dbcbd50
commit 847292ea30
2 changed files with 39 additions and 12 deletions

View File

@ -116,6 +116,10 @@ protected:
* On missing the deadline, the deadlineMissedFunction is executed.
*/
void taskFunctionality(void);
void checkMissedDeadline(const TickType_t xLastWakeTime,
const TickType_t interval);
void handleMissedDeadline();
};
#endif /* PERIODICTASK_H_ */