This repository has been archived on 2021-11-24. You can view files and clone it, but cannot push or open issues or pull requests.
fsfw_example_public/bsp_stm32_freertos/utility/print.c

8 lines
174 B
C

#include <hardware_init.h>
#include <boardconfig.h>
void printChar(const char* character) {
HAL_UART_Transmit(&huart3, (uint8_t *)character, 1 , DEBUG_UART_MS_TIMEOUT);
}