aboutsummaryrefslogtreecommitdiff
path: root/client/serial_linux.c
diff options
context:
space:
mode:
Diffstat (limited to 'client/serial_linux.c')
-rw-r--r--client/serial_linux.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/client/serial_linux.c b/client/serial_linux.c
index 2497fac..0501cdf 100644
--- a/client/serial_linux.c
+++ b/client/serial_linux.c
@@ -67,6 +67,7 @@ int w2_serial_read() {
}
bool w2_serial_write(char *data, uint8_t length) {
+ usleep(1e3);
return write(g_w2_serial_handle, data, length) == length;
}