TACOS/App/Src/tasks/manager.cpp
2023-08-30 22:41:24 +02:00

27 lines
279 B
C++

/*
* manager.cpp
*
* Created on: Aug 30, 2023
* Author: Dario
*/
#include <cmsis_os2.h>
#include <sta/debug/debug.hpp>
extern "C" void startManagerTask(void *)
{
STA_DEBUG_PRINTLN("INITIALIZED MANAGER TASK");
while (true)
{
// TODO
}
osThreadExit();
}