fsfw-example-stm32h7-freertos/bsp_stm32h7_freertos/utility/print.c

7 lines
179 B
C

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