added eive-watchdog

This commit is contained in:
2021-07-29 11:35:20 +02:00
parent 190590e1b5
commit 59bcf6cec2
8 changed files with 283 additions and 28 deletions

15
watchdog/main.cpp Normal file
View File

@ -0,0 +1,15 @@
#include "Watchdog.h"
#include <iostream>
/**
* @brief This watchdog application uses a FIFO to check whether the OBSW is still running.
* It checks whether the OBSW writes to the the FIFO regularly.
*/
int main() {
std::cout << "Starting OBSW watchdog.." << std::endl;
WatchdogTask watchdogTask;
watchdogTask.performOperation();
return 0;
}