diff options
Diffstat (limited to 'client/serial_win32.c')
-rw-r--r-- | client/serial_win32.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/client/serial_win32.c b/client/serial_win32.c new file mode 100644 index 0000000..9406a34 --- /dev/null +++ b/client/serial_win32.c @@ -0,0 +1,10 @@ +#ifdef W2_HOST_WIN32 + +#include "serial.h" + +bool w2_serial_read(uint8_t *target, uint8_t bytes); +bool w2_serial_write(uint8_t *target, uint8_t bytes); +void w2_serial_open(); +void w2_serial_close(); + +#endif |