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; /******************************************************************************