diff options
Diffstat (limited to 'client/serial_win32.c')
-rw-r--r-- | client/serial_win32.c | 16 |
1 files changed, 4 insertions, 12 deletions
diff --git a/client/serial_win32.c b/client/serial_win32.c index edc9db1..99f4160 100644 --- a/client/serial_win32.c +++ b/client/serial_win32.c @@ -2,20 +2,12 @@ #include "serial.h" -int w2_serial_read() { - return 0x00; -} +int w2_serial_read() { return 0x00; } -bool w2_serial_write(char *data, uint8_t length) { - return true; -} +bool w2_serial_write(char *data, uint8_t length) { return true; } -bool w2_serial_open(const char *port_name) { - return true; -} +bool w2_serial_open(const char *port_name) { return true; } -void w2_serial_close() { - return; -} +void w2_serial_close() { return; } #endif |