formatting
This commit is contained in:
parent
2cbc02c3bb
commit
11be5085b5
8 changed files with 17 additions and 21 deletions
|
@ -16,9 +16,7 @@ void Robot::RobotInit() {}
|
|||
* <p> This runs after the mode specific periodic functions, but before
|
||||
* LiveWindow and SmartDashboard integrated updating.
|
||||
*/
|
||||
void Robot::RobotPeriodic() {
|
||||
frc2::CommandScheduler::GetInstance().Run();
|
||||
}
|
||||
void Robot::RobotPeriodic() { frc2::CommandScheduler::GetInstance().Run(); }
|
||||
|
||||
/**
|
||||
* This function is called once each time the robot enters Disabled mode. You
|
||||
|
@ -74,7 +72,5 @@ void Robot::SimulationInit() {}
|
|||
void Robot::SimulationPeriodic() {}
|
||||
|
||||
#ifndef RUNNING_FRC_TESTS
|
||||
int main() {
|
||||
return frc::StartRobot<Robot>();
|
||||
}
|
||||
int main() { return frc::StartRobot<Robot>(); }
|
||||
#endif
|
||||
|
|
Loading…
Reference in a new issue