Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions libraries/AP_HAL_ChibiOS/UARTDriver.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1753,6 +1753,9 @@ void UARTDriver::uart_info(ExpandingString &str, StatsTracker &stats, const uint
_rx_stats_noise_errors,
#endif
_flow_control);
#if CH_CFG_USE_EVENTS == TRUE
_rx_stats_framing_errors = _rx_stats_overrun_errors = _rx_stats_noise_errors = 0;
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

what impact does this have on the logging we do of this in bin logs?

#endif
}
#endif

Expand Down
Loading