mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-22 01:11:42 +00:00
[wpilib] Fix DS mode thread event being manual reset accidentally (#4818)
These need to be automatic reset.
This commit is contained in:
@@ -39,7 +39,7 @@ void DriverStationModeThread::InTest(bool entering) {
|
||||
}
|
||||
|
||||
void DriverStationModeThread::Run() {
|
||||
wpi::Event event{true, false};
|
||||
wpi::Event event{false, false};
|
||||
HAL_ProvideNewDataEventHandle(event.GetHandle());
|
||||
|
||||
while (m_keepAlive.load()) {
|
||||
|
||||
Reference in New Issue
Block a user