aboutsummaryrefslogtreecommitdiff
path: root/client/commands.c
diff options
context:
space:
mode:
authorlonkaars <loek@pipeframe.xyz>2022-05-29 17:01:19 +0200
committerlonkaars <loek@pipeframe.xyz>2022-05-29 17:01:19 +0200
commit1c7c0bd747c839fb1e449e98cec942894821addf (patch)
tree01ac940d42dcfc767afa191efd7ecbd0ab73dcc5 /client/commands.c
parent59802547c336d61aa7e950414a3f44180e211974 (diff)
`make format`
Diffstat (limited to 'client/commands.c')
-rw-r--r--client/commands.c19
1 files changed, 9 insertions, 10 deletions
diff --git a/client/commands.c b/client/commands.c
index 67025f4..1ab79fb 100644
--- a/client/commands.c
+++ b/client/commands.c
@@ -1,10 +1,10 @@
#include <stdlib.h>
-#include "commands.h"
-#include "time.h"
-#include "main.h"
#include "../shared/bin.h"
#include "../shared/protocol.h"
+#include "commands.h"
+#include "main.h"
+#include "time.h"
void w2_send_bin(w2_s_bin *data) {
w2_serial_write("\xff", 1);
@@ -14,27 +14,26 @@ void w2_send_bin(w2_s_bin *data) {
}
}
-w2_s_bin* w2_send_info() {
+w2_s_bin *w2_send_info() {
size_t msg_size = sizeof(w2_s_cmd_info_rx);
w2_s_cmd_info_rx *msg = malloc(msg_size);
msg->opcode = W2_CMD_INFO | W2_CMDDIR_RX;
- w2_s_bin *msg_bin = w2_bin_s_alloc(msg_size, (uint8_t *)msg);
+ w2_s_bin *msg_bin = w2_bin_s_alloc(msg_size, (uint8_t *)msg);
w2_send_bin(msg_bin);
free(msg);
free(msg_bin);
}
-w2_s_bin* w2_send_ping() {
- g_w2_state.ping_id = (uint8_t) rand();
+w2_s_bin *w2_send_ping() {
+ g_w2_state.ping_id = (uint8_t)rand();
size_t msg_size = sizeof(w2_s_cmd_ping_rx);
w2_s_cmd_ping_rx *msg = malloc(msg_size);
msg->opcode = W2_CMD_PING | W2_CMDDIR_RX;
- msg->id = g_w2_state.ping_id;
- w2_s_bin *msg_bin = w2_bin_s_alloc(msg_size, (uint8_t *)msg);
+ msg->id = g_w2_state.ping_id;
+ w2_s_bin *msg_bin = w2_bin_s_alloc(msg_size, (uint8_t *)msg);
w2_send_bin(msg_bin);
free(msg);
free(msg_bin);
w2_timer_start(W2_TIMER_PING);
}
-