chess_tile/src/uart_driver.h

10 lines
205 B
C
Executable File

#ifndef UART_DRIVER_H
#define UART_DRIVER_H
#include <ch32v00x.h>
void USARTx_CFG(void);
void UartBufferSend(uint8_t* buffer, uint16_t length);
void UartStringSend(char* string);
#endif // UART_DRIVER_H