2019-08-04 13:14:35 -05:00
|
|
|
#ifndef SERIAL_H
|
|
|
|
#define SERIAL_H
|
|
|
|
|
|
|
|
void serial_init();
|
2020-07-23 09:21:14 -05:00
|
|
|
void serial_putc(char c);
|
|
|
|
void serial_write_string(const char* s); //Provided by platform-independent code
|
|
|
|
void serial_printf(const char* format,...); //Provided by platform-independent code
|
2019-08-04 13:14:35 -05:00
|
|
|
|
|
|
|
#endif
|