added eive-watchdog
This commit is contained in:
15
watchdog/main.cpp
Normal file
15
watchdog/main.cpp
Normal 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;
|
||||
}
|
||||
|
Reference in New Issue
Block a user