12345678910111213141516171819202122232425262728293031 |
-
-
- #ifndef __SERIAL_H__
- #define __SERIAL_H__
-
- #include <stddef.h>
- #include <stdint.h>
- #include <stdbool.h>
-
- void serial_init(void);
- void serial_write(const void *buf, size_t count);
- void serial_set_reroute(bool reroute);
- void serial_run(void);
-
- #endif
|