Skip to content

Commit c20b01b

Browse files
committed
Fixed CI findings
1 parent 9f13513 commit c20b01b

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

lib/ConvoyLeader/src/IdleState.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ class IdleState : public IState
108108
/**
109109
* Default constructor.
110110
*/
111-
IdleState() : IState(), m_isActive(false)
111+
IdleState() : IState(), m_isActive(false), m_releaseRequested(false)
112112
{
113113
}
114114

lib/ConvoyLeader/src/SerialMuxChannels.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ namespace RemoteControl
9191
CMD_ID_START_DRIVING, /**< Start driving. */
9292
CMD_ID_SET_INIT_POS, /**< Set initial position. */
9393

94-
} CmdId;
94+
} CmdId; /**< Command ID */
9595

9696
/** Remote control command responses. */
9797
typedef enum : uint8_t
@@ -100,7 +100,7 @@ namespace RemoteControl
100100
RSP_ID_PENDING, /**< Command is pending. */
101101
RSP_ID_ERROR /**< Command failed. */
102102

103-
} RspId;
103+
} RspId; /**< Response ID */
104104
} /* namespace RemoteControl */
105105

106106
/** Struct of the "Command" channel payload. */

0 commit comments

Comments
 (0)