@@ -23,16 +23,16 @@ namespace wpi {
2323 * DriverStationConnected() -- provide for initialization the first time the DS
2424 * is connected
2525 *
26- * Init () functions -- each of the following functions is called once when the
26+ * Enter () functions -- each of the following functions is called once when the
2727 * appropriate mode is entered:
2828 *
29- * \li DisabledInit () -- called each and every time disabled is entered from
29+ * \li DisabledEnter () -- called each and every time disabled is entered from
3030 * another mode
31- * \li AutonomousInit() -- called each and every time autonomous is entered from
31+ * \li AutonomousEnter() -- called each and every time autonomous is entered
32+ * from another mode
33+ * \li TeleopEnter() -- called each and every time teleop is entered from
3234 * another mode
33- * \li TeleopInit() -- called each and every time teleop is entered from another
34- * mode
35- * \li TestInit() -- called each and every time test is entered from another
35+ * \li TestEnter() -- called each and every time test is entered from another
3636 * mode
3737 *
3838 * Periodic() functions -- each of these functions is called on an interval:
@@ -72,37 +72,36 @@ class IterativeRobotBase : public RobotBase {
7272 virtual void SimulationInit ();
7373
7474 /* *
75- * Initialization code for disabled mode should go here.
75+ * Entry code for disabled mode should go here.
7676 *
77- * Users should override this method for initialization code which will be
78- * called each time
77+ * Users should override this method for code which will be called each time
7978 * the robot enters disabled mode.
8079 */
81- virtual void DisabledInit ();
80+ virtual void DisabledEnter ();
8281
8382 /* *
84- * Initialization code for autonomous mode should go here.
83+ * Entry code for autonomous mode should go here.
8584 *
86- * Users should override this method for initialization code which will be
87- * called each time the robot enters autonomous mode.
85+ * Users should override this method for code which will be called each time
86+ * the robot enters autonomous mode.
8887 */
89- virtual void AutonomousInit ();
88+ virtual void AutonomousEnter ();
9089
9190 /* *
92- * Initialization code for teleop mode should go here.
91+ * Entry code for teleop mode should go here.
9392 *
94- * Users should override this method for initialization code which will be
95- * called each time the robot enters teleop mode.
93+ * Users should override this method for code which will be called each time
94+ * the robot enters teleop mode.
9695 */
97- virtual void TeleopInit ();
96+ virtual void TeleopEnter ();
9897
9998 /* *
100- * Initialization code for test mode should go here.
99+ * Entry code for test mode should go here.
101100 *
102- * Users should override this method for initialization code which will be
103- * called each time the robot enters test mode.
101+ * Users should override this method for code which will be called each time
102+ * the robot enters test mode.
104103 */
105- virtual void TestInit ();
104+ virtual void TestEnter ();
106105
107106 /* *
108107 * Periodic code for all modes should go here.
0 commit comments