mirror of
https://git.intern.spaceteamaachen.de/ALPAKA/TACOS.git
synced 2025-06-12 01:25:59 +00:00
21 lines
320 B
C++
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
|