summaryrefslogtreecommitdiff
path: root/robot/sercomm.c
diff options
context:
space:
mode:
authorlonkaars <loek@pipeframe.xyz>2022-05-25 19:02:23 +0200
committerlonkaars <loek@pipeframe.xyz>2022-05-25 19:02:23 +0200
commit87900d6787f8e0af8d37cc313c4e0510ef0b1bf8 (patch)
tree3f5858a1d7b7291c8415d3d828321f3e20c503ad /robot/sercomm.c
parentafa10fa556585d965e3a7d46c2fd5436d29cf3c6 (diff)
serial receive working with empty handlers
Diffstat (limited to 'robot/sercomm.c')
-rw-r--r--robot/sercomm.c61
1 files changed, 61 insertions, 0 deletions
diff --git a/robot/sercomm.c b/robot/sercomm.c
index f4b7eb5..a1aa31c 100644
--- a/robot/sercomm.c
+++ b/robot/sercomm.c
@@ -46,3 +46,64 @@ void w2_sercomm_append_msg(w2_s_bin *data) {
if (g_w2_sercomm_buffer_full) return;
g_w2_sercomm_index = next_index;
}
+
+void w2_scmd_ping_rx(w2_s_bin *data) {
+ return;
+}
+
+void w2_scmd_mode_rx(w2_s_bin *data) {
+ return;
+}
+
+void w2_scmd_sped_rx(w2_s_bin *data) {
+ return;
+}
+
+void w2_scmd_dirc_rx(w2_s_bin *data) {
+ return;
+}
+
+void w2_scmd_cord_rx(w2_s_bin *data) {
+ return;
+}
+
+void w2_scmd_bomd_rx(w2_s_bin *data) {
+ return;
+}
+
+void w2_scmd_sres_rx(w2_s_bin *data) {
+ return;
+}
+
+void w2_scmd_mcfg_rx(w2_s_bin *data) {
+ return;
+}
+
+void w2_scmd_sens_rx(w2_s_bin *data) {
+ return;
+}
+
+void w2_scmd_info_rx(w2_s_bin *data) {
+ return;
+}
+
+void w2_scmd_disp_rx(w2_s_bin *data) {
+ return;
+}
+
+void w2_scmd_play_rx(w2_s_bin *data) {
+ return;
+}
+
+void w2_scmd_cled_rx(w2_s_bin *data) {
+ return;
+}
+
+void w2_scmd_ping_tx(w2_s_bin *data) { }
+void w2_scmd_expt_tx(w2_s_bin *data) { }
+void w2_scmd_mode_tx(w2_s_bin *data) { }
+void w2_scmd_cord_tx(w2_s_bin *data) { }
+void w2_scmd_bomd_tx(w2_s_bin *data) { }
+void w2_scmd_sens_tx(w2_s_bin *data) { }
+void w2_scmd_info_tx(w2_s_bin *data) { }
+