Skip to content

Commit

Permalink
Added missing decorator
Browse files Browse the repository at this point in the history
  • Loading branch information
gabryelreyes committed Sep 30, 2024
1 parent 551d9ab commit 9ece128
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/APPConvoyLeader/src/DrivingState.h
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ class DrivingState : public IState
LineStatus m_lineStatus; /**< Status of start-/end line detection */
TrackStatus m_trackStatus; /**< Status of track which means on track or track lost, etc. */
uint8_t m_startEndLineDebounce; /**< Counter used for easys debouncing of the start-/end line detection. */
MovAvg<int16_t, uint32_t, 2> m_posMovAvg; /**< The moving average of the position over 2 calling cycles. */
MovAvg<int16_t, uint32_t, 2U> m_posMovAvg; /**< The moving average of the position over 2 calling cycles. */

/**
* Default constructor.
Expand Down

0 comments on commit 9ece128

Please sign in to comment.