[wpilib] Remove IterativeRobotBase mode init prints (#3500)

They don't provide much utility for the end user. A print at the call to
HAL_ObserveUserProgramStarting() was added in their place so it's still
clear when constructors have finished running.
This commit is contained in:
Tyler Veness
2021-08-05 23:54:50 -07:00
committed by GitHub
parent fb2ee8ec34
commit 5ac60f0a20
4 changed files with 15 additions and 36 deletions

View File

@@ -6,6 +6,7 @@
#include <stdint.h>
#include <cstdio>
#include <utility>
#include <hal/DriverStation.h>
@@ -25,6 +26,7 @@ void TimedRobot::StartCompetition() {
}
// Tell the DS that the robot is ready to be enabled
std::puts("\n********** Robot program startup complete **********");
HAL_ObserveUserProgramStarting();
// Loop forever, calling the appropriate mode-dependent function