diff options
author | lonkaars <loek@pipeframe.xyz> | 2022-05-29 17:01:19 +0200 |
---|---|---|
committer | lonkaars <loek@pipeframe.xyz> | 2022-05-29 17:01:19 +0200 |
commit | 1c7c0bd747c839fb1e449e98cec942894821addf (patch) | |
tree | 01ac940d42dcfc767afa191efd7ecbd0ab73dcc5 /client/setup.c | |
parent | 59802547c336d61aa7e950414a3f44180e211974 (diff) |
`make format`
Diffstat (limited to 'client/setup.c')
-rw-r--r-- | client/setup.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/client/setup.c b/client/setup.c index 35b761c..2e8cce7 100644 --- a/client/setup.c +++ b/client/setup.c @@ -1,18 +1,18 @@ #include <stdio.h> #include <stdlib.h> -#include "serial.h" -#include "setup.h" -#include "commands.h" #include "../shared/bin.h" #include "../shared/protocol.h" +#include "commands.h" +#include "serial.h" +#include "setup.h" // pointers for endianness check static const uint16_t _test = 1; static const uint8_t *_ptest = (uint8_t *)&_test; uint8_t g_w2_endianness; -void w2_client_setup(int argc, char** argv) { +void w2_client_setup(int argc, char **argv) { if (argc < 2) { printf("usage: %s <serial port>\n", argv[0]); exit(1); |