13 lines
262 B
C
13 lines
262 B
C
#ifndef DRIVERS_SERIAL_SERIAL_H_
|
|
#define DRIVERS_SERIAL_SERIAL_H_
|
|
|
|
#include <stdint.h>
|
|
|
|
void serial_init(void);
|
|
int serial_recvready(void);
|
|
uint8_t serial_recvb(void);
|
|
int serial_sendready(void);
|
|
void serial_sendb(uint8_t b);
|
|
|
|
#endif // DRIVERS_SERIAL_SERIAL_H_
|