Skip to content

Commit 8056d56

Browse files
committed
fixed CI findings
1 parent ccb7bc8 commit 8056d56

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

lib/ConvoyLeader/src/DrivingState.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ class DrivingState : public IState
9494
/**
9595
* Set maximum motor speed.
9696
*
97-
* @param[in] speed Maximum motor speed.
97+
* @param[in] maxSpeed Maximum motor speed.
9898
*/
9999
void setMaxMotorSpeed(int16_t maxSpeed);
100100

lib/ConvoyLeader/src/SerialMuxChannels.h

+2
Original file line numberDiff line numberDiff line change
@@ -82,8 +82,10 @@ typedef struct _Command
8282
{
8383
uint8_t commandId; /**< Command ID */
8484

85+
/** Command payload. */
8586
union
8687
{
88+
/** Init data command payload. */
8789
struct
8890
{
8991
int32_t xPos; /**< X position [mm]. */

0 commit comments

Comments
 (0)