generated from hulk/gd32e23x_template_cmake_vscode
13 lines
190 B
C
13 lines
190 B
C
#ifndef UART_H
|
|
#define UART_H
|
|
|
|
#include "gd32e23x.h"
|
|
|
|
void rs485_init(void);
|
|
|
|
uint32_t rs485_send_byte(uint8_t data);
|
|
|
|
uint32_t rs485_send_str(uint8_t* str, uint16_t len);
|
|
|
|
#endif // UART_H
|