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

8 lines
174 B
C
Raw Normal View History

2021-07-12 21:50:48 +02:00
#include <hardware_init.h>
#include <boardconfig.h>
void printChar(const char* character) {
HAL_UART_Transmit(&huart3, (uint8_t *)character, 1 , DEBUG_UART_MS_TIMEOUT);
}