That error is part of a safety feature in the RobotDrive class. It states that if the RobotDrive isn't update every so often, then the robot will stop driving. For Autonomous you want to set the speed once and then stop it later. To do this you need to disable the safety.
Code:
RobotDrive.setSafetyEnabled(false);