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

7 lines
179 B
C
Raw Normal View History

2021-07-12 21:50:48 +02:00
#include <boardconfig.h>
2022-05-22 15:30:38 +02:00
#include <hardware_init.h>
2021-07-12 21:50:48 +02:00
2022-05-22 15:30:38 +02:00
void printChar(const char *character) {
2022-05-29 18:41:52 +02:00
HAL_UART_Transmit(&huart3, (const uint8_t *)character, 1, DEBUG_UART_MS_TIMEOUT);
2021-07-12 21:50:48 +02:00
}