summaryrefslogtreecommitdiff
path: root/client/serial_win32.c
diff options
context:
space:
mode:
authorlonkaars <loek@pipeframe.xyz>2022-06-06 15:31:36 +0200
committerlonkaars <loek@pipeframe.xyz>2022-06-06 15:31:36 +0200
commitd69b8110517114d884c185c4dc8053858670c81f (patch)
tree8912cc5cb1b7ead5ce7469cd60356af189e926ce /client/serial_win32.c
parent9cbd1ed3bd8e59e24bd4db92b749213ac2c0c8f9 (diff)
scal and spin done, removed lcal
Diffstat (limited to 'client/serial_win32.c')
-rw-r--r--client/serial_win32.c16
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