mirror of
https://git.intern.spaceteamaachen.de/ALPAKA/TACOS.git
synced 2025-06-14 02:06:00 +00:00
24 lines
317 B
C++
24 lines
317 B
C++
/*
|
|
* manager.cpp
|
|
*
|
|
* Created on: Aug 31, 2023
|
|
* Author: Carl
|
|
*/
|
|
|
|
#include <cmsis_os.h>
|
|
#include <string>
|
|
#include <usart.h>
|
|
|
|
|
|
extern "C" void outputTask(void *)
|
|
{
|
|
std::string str("Hello World!");
|
|
|
|
for (char c : str)
|
|
{
|
|
HAL_UART_Transmit(&huart2, (uint8_t*)&c, 1, HAL_MAX_DELAY);
|
|
}
|
|
|
|
osThreadExit();
|
|
}
|