diff options
author | lonkaars <loek@pipeframe.xyz> | 2022-05-17 21:28:08 +0200 |
---|---|---|
committer | lonkaars <loek@pipeframe.xyz> | 2022-05-17 21:28:08 +0200 |
commit | 2b75425070662b869c15673623df44e30ce43ebe (patch) | |
tree | f0dbb5e840e2747be5966952cb2e3554d034ae72 /robot/setup.c | |
parent | 365dcc18fbd98645585cdbe009f537ecdaa90c1a (diff) |
code format
Diffstat (limited to 'robot/setup.c')
-rw-r--r-- | robot/setup.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/robot/setup.c b/robot/setup.c index bdd5991..d040286 100644 --- a/robot/setup.c +++ b/robot/setup.c @@ -1,15 +1,15 @@ #include <stdlib.h> +#include "bin.h" #include "consts.h" #include "halt.h" #include "modes.h" #include "orangutan_shim.h" #include "setup.h" -#include "bin.h" // pointers for endianness check -static const uint16_t _test = 1; -static const uint8_t* _ptest = (uint8_t*)&_test; +static const uint16_t _test = 1; +static const uint8_t *_ptest = (uint8_t *)&_test; uint8_t g_w2_endianness; void w2_setup_main() { |