diff options
author | lonkaars <loek@pipeframe.xyz> | 2022-05-30 13:31:47 +0200 |
---|---|---|
committer | lonkaars <loek@pipeframe.xyz> | 2022-05-30 13:31:47 +0200 |
commit | b728a15887fa28cdd98d74017c4882d632d6e069 (patch) | |
tree | 97df03d5b78ab4b48e72f69f75f3cc4307f6a373 /client/setup.c | |
parent | 03862852b128748358dcb39ce50600eef0ba1a71 (diff) |
status bar almost done
Diffstat (limited to 'client/setup.c')
-rw-r--r-- | client/setup.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/client/setup.c b/client/setup.c index 59e43d1..a7db057 100644 --- a/client/setup.c +++ b/client/setup.c @@ -1,12 +1,13 @@ +#include <ncurses.h> #include <stdio.h> #include <stdlib.h> -#include <ncurses.h> #include "../shared/bin.h" #include "../shared/protocol.h" #include "commands.h" #include "serial.h" #include "setup.h" +#include "strings.h" #include "ui.h" // pointers for endianness check @@ -31,6 +32,7 @@ void w2_client_setup(int argc, char **argv) { } noecho(); + w2_strings_init(); w2_cmd_setup_handlers(); w2_send_info(); |