diff options
author | lonkaars <loek@pipeframe.xyz> | 2022-05-29 17:01:03 +0200 |
---|---|---|
committer | lonkaars <loek@pipeframe.xyz> | 2022-05-29 17:01:03 +0200 |
commit | 59802547c336d61aa7e950414a3f44180e211974 (patch) | |
tree | cf7107b9085ce3c93e98ec874d25e04ad2362a4c /client/setup.c | |
parent | 3b2c2cf6b2af9e76b343a5a8fc8e9245f240690d (diff) |
client ping working
Diffstat (limited to 'client/setup.c')
-rw-r--r-- | client/setup.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/client/setup.c b/client/setup.c index d7314e8..35b761c 100644 --- a/client/setup.c +++ b/client/setup.c @@ -3,6 +3,7 @@ #include "serial.h" #include "setup.h" +#include "commands.h" #include "../shared/bin.h" #include "../shared/protocol.h" @@ -24,6 +25,9 @@ void w2_client_setup(int argc, char** argv) { w2_cmd_setup_handlers(); + w2_send_info(); + w2_send_ping(); + // check endianness g_w2_endianness = *_ptest; } |