From eb21a0a2c5039daba553078cfdd6e3d10de9ce3e Mon Sep 17 00:00:00 2001 From: Jack Rosenthal Date: Sun, 3 Mar 2024 12:07:08 -0700 Subject: [PATCH] vesc_uasrt: Fix compile error Missing semicolon :O --- LCM/Code/App/vesc_uasrt.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/LCM/Code/App/vesc_uasrt.c b/LCM/Code/App/vesc_uasrt.c index 0b009e76..00aeb447 100644 --- a/LCM/Code/App/vesc_uasrt.c +++ b/LCM/Code/App/vesc_uasrt.c @@ -357,7 +357,7 @@ uint8_t Protocol_Parse(uint8_t * message) if (data.rpm < -100) data.isForward = data.state == RUNNING_UPSIDEDOWN; if (data.state > RUNNING_FLYWHEEL) - data.isForward = true + data.isForward = true; return 0; }