[wpilib] Remove robotInit() (#8199)

Fixes #6622.
This commit is contained in:
Tyler Veness
2025-09-08 21:17:37 -07:00
committed by GitHub
parent f8ed2a4d92
commit be72d543ad
8 changed files with 5 additions and 68 deletions

View File

@@ -20,8 +20,6 @@ IterativeRobotBase::IterativeRobotBase(units::second_t period)
: m_period(period),
m_watchdog(period, [this] { PrintLoopOverrunMessage(); }) {}
void IterativeRobotBase::RobotInit() {}
void IterativeRobotBase::DriverStationConnected() {}
void IterativeRobotBase::SimulationInit() {}

View File

@@ -18,8 +18,6 @@
using namespace frc;
void TimedRobot::StartCompetition() {
RobotInit();
if constexpr (IsSimulation()) {
SimulationInit();
}