mirror of
https://git.intern.spaceteamaachen.de/ALPAKA/TACOS.git
synced 2025-06-12 01:25:59 +00:00
26 lines
310 B
C++
26 lines
310 B
C++
/*
|
|
* manager.cpp
|
|
*
|
|
* Created on: Aug 31, 2023
|
|
* Author: Carl
|
|
*/
|
|
|
|
#include <cmsis_os.h>
|
|
#include <string>
|
|
#include <usart.h>
|
|
|
|
#include <sta/debug/debug.hpp>
|
|
|
|
|
|
extern "C" void outputTask(void *)
|
|
{
|
|
while (true)
|
|
{
|
|
STA_DEBUG_PRINTLN("OUTPUT TASK RUNNING");
|
|
|
|
osThreadYield();
|
|
}
|
|
|
|
osThreadExit();
|
|
}
|