From e774ebe76cb5c2770c2c26bdb1ebe1912aa71f50 Mon Sep 17 00:00:00 2001 From: gabryelreyes Date: Thu, 9 Nov 2023 09:52:46 +0100 Subject: [PATCH] Updated SerialMuxChannels documentation --- lib/APPConvoyLeader/SerialMuxChannels.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/lib/APPConvoyLeader/SerialMuxChannels.h b/lib/APPConvoyLeader/SerialMuxChannels.h index 63b0cf3e..2a6b6c4f 100644 --- a/lib/APPConvoyLeader/SerialMuxChannels.h +++ b/lib/APPConvoyLeader/SerialMuxChannels.h @@ -77,16 +77,16 @@ /** Struct of the "Odometry" channel payload. */ typedef struct _OdometryData { - int32_t xPos; - int32_t yPos; - int32_t orientation; + int32_t xPos; /**< X position. */ + int32_t yPos; /**< Y position. */ + int32_t orientation; /**< Orientation. */ } __attribute__((packed)) OdometryData; /** Struct of the "Speed" channel payload. */ typedef struct _SpeedData { - int16_t left; - int16_t right; + int16_t left; /**< Left motor speed. */ + int16_t right; /**< Right motor speed. */ } __attribute__((packed)) SpeedData; /******************************************************************************