From 3598489dc5465ad643031b6d9b2c246d99602982 Mon Sep 17 00:00:00 2001 From: sowgro Date: Thu, 6 Nov 2025 22:20:44 -0500 Subject: remove warnings --- project/Core/Src/Project/remote_control.c | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'project/Core/Src/Project/remote_control.c') diff --git a/project/Core/Src/Project/remote_control.c b/project/Core/Src/Project/remote_control.c index c549eb1..68d3f21 100644 --- a/project/Core/Src/Project/remote_control.c +++ b/project/Core/Src/Project/remote_control.c @@ -18,6 +18,8 @@ static char buffer[80]; static char* cur = buffer; +void parse_input(char buffer[]); + /** * Initialize remote control mode (does not enable it) */ @@ -39,6 +41,10 @@ void remote_control_loop() { } } +/** + * Parses the input string and calls the correct command + * @param buffer a null terminated string of the input + */ void parse_input(char buffer[]) { if (!strcmp(buffer, "HELP")) { player_help(); -- cgit v1.2.3