mirror of
https://git.intern.spaceteamaachen.de/ALPAKA/TACOS.git
synced 2025-06-13 17:55:59 +00:00
27 lines
279 B
C++
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();
|
|
}
|
|
|
|
|