Skip to content

Commit

Permalink
Updated SerialMuxChannels documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
gabryelreyes committed Nov 9, 2023
1 parent e47a8c1 commit e774ebe
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions lib/APPConvoyLeader/SerialMuxChannels.h
Original file line number Diff line number Diff line change
Expand Up @@ -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;

/******************************************************************************
Expand Down

0 comments on commit e774ebe

Please sign in to comment.