DevEBox_STM32H750VB_Template/src/syscalls.c

7 lines
146 B
C
Raw Permalink Normal View History

2023-04-14 13:56:45 +00:00
#include "peripherals.h"
int _write(int file, char *ptr, int len) {
HAL_UART_Transmit(&huart1, (uint8_t *)ptr, len, 1000);
return len;
}