mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-23 01:21:42 +00:00
Default to DS attached to true in sim (#1500)
Otherwise, it is required to be set manually, which isn't obvious. This is because the HighLevel DS classes check that the ds is attached before enabling
This commit is contained in:
committed by
Peter Johnson
parent
ce1367a115
commit
6593f4346e
@@ -41,7 +41,7 @@ void DriverStationData::ResetData() {
|
||||
test.Reset(false);
|
||||
eStop.Reset(false);
|
||||
fmsAttached.Reset(false);
|
||||
dsAttached.Reset(false);
|
||||
dsAttached.Reset(true);
|
||||
allianceStationId.Reset(static_cast<HAL_AllianceStationID>(0));
|
||||
matchTime.Reset(0.0);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user