mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-19 00:41:43 +00:00
Revert "Suppress timeout message in C++ MotorSafety class (#1512)"
This reverts commit 300eeb330d.
This commit is contained in:
@@ -16,8 +16,6 @@
|
||||
|
||||
using namespace frc;
|
||||
|
||||
MotorSafety::MotorSafety() { m_watchdog.SuppressTimeoutMessage(true); }
|
||||
|
||||
MotorSafety::MotorSafety(MotorSafety&& rhs)
|
||||
: ErrorBase(std::move(rhs)), m_enabled(std::move(rhs.m_enabled)) {
|
||||
m_watchdog = Watchdog(rhs.m_watchdog.GetTimeout(), [this] { TimeoutFunc(); });
|
||||
|
||||
Reference in New Issue
Block a user