From 468aa16d0bbd6b0c8da8061dc91c879e8a999e05 Mon Sep 17 00:00:00 2001 From: Evin Lodder Date: Sun, 12 Apr 2026 14:59:05 -0400 Subject: [PATCH] fixed signature of func in .h --- test_node/app/src/threads/rc.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test_node/app/src/threads/rc.h b/test_node/app/src/threads/rc.h index 5589ba1f..c88bb606 100644 --- a/test_node/app/src/threads/rc.h +++ b/test_node/app/src/threads/rc.h @@ -1,8 +1,9 @@ #ifndef RC_H #define RC_H #include +#include "threads/sensor_emulation.h" -void rc_command_received(uint8_t command); +bool rc_command_received(rc_data_t command); int rc_init(const struct device* dev); #endif \ No newline at end of file