TACOS/App/Src/watchdog.cpp

21 lines
320 B
C++

/*
* watchdog.cpp
*
* Created on: Sep 1, 2023
* Author: Dario
*/
#include <sta/debug/debug.hpp>
#include <sta/rtos/system/watchdog.hpp>
namespace sta
{
namespace rtos
{
void watchdogEventHandler(void * arg, uint32_t flags)
{
STA_DEBUG_PRINTLN("Watchdog is doing stuff?");
}
}
} // namespace sta