/* * manager.cpp * * Created on: Aug 31, 2023 * Author: Carl */ #include #include #include 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(); }