![]() |
Robot drive... Output not updated enough.
Im triying to call a digital in from the driverstation and when i enable the robot i get spammed with this line, any ideas thanks
|
Re: Robot drive... Output not updated enough.
This is affecting our team as well. Were you using the SmartDashboard at the time by any chance? We think it might have to do with that.
|
Re: Robot drive... Output not updated enough.
Our team was also having problems with this, but we found that it has to do with the RobotDrive object in your code. As long as it does not have access to the specified jaguars or there is no joystick, it will be unable to perform the task RobotDrive.arcadeDrive(), or whatever method you are using to drive. For testing purposes, just comment out everything having to do with RobotDrive and you should be fine.
|
Re: Robot drive... Output not updated enough.
Another thing you can do is call the RobotDrive method: setSafetyEnabled(false)
-Maciej |
Re: Robot drive... Output not updated enough.
Quote:
|
Re: Robot drive... Output not updated enough.
Our program, test, was working on SimpleRobot and we switched to Iterative, but now the error for updating Robot Drive appear. I tried setSafetyEnabled(false) but that only stopped the error. Nothing moves and I don't know what to do
Any advice or comment would be helpful right now. Thank you in advanced! |
Re: Robot drive... Output not updated enough.
UPDATE: just after my post, the robot drive train moved. After a few minutes, it disconnected because a CRIO wire came loose. Then the autonomous made one motor move really slowly, which was not supposed to HAPPEN! Now it doesn't move again.
Any comments, advice, or anything else will be greatly appreciated1 |
Re: Robot drive... Output not updated enough.
Quote:
|
Re: Robot drive... Output not updated enough.
Our team has encountered this error a lot. It mostly has to do with either the Timer.delay() method or the robotDrive.setSafetyEnabled() method. Check to see also if your code contains
Code:
while(isEnabled() && isOperatorControl()) { |
Re: Robot drive... Output not updated enough.
Restart the driver station.
|
Re: Robot drive... Output not updated enough.
Scratch that. It only fixed it for a second. After inverting one side of the wheels (only one line of code), everything stopped working again. This happened even after I stripped the code of everything except joysticks and robotdrive. Help!!!
|
Re: Robot drive... Output not updated enough.
Our team also had this problem, forgot how we solved it, BUT we did not use RobotDrive. Our robot is swerve Drive, so we had to code our own Drive class for swerve algorithms.
So it's not robot drive alone it seems. |
Re: Robot drive... Output not updated enough.
I just forgot to use the .getInstance();
|
Re: Robot drive... Output not updated enough.
We had the same problem and i somewhat forget what the problem was but i think restarting the computer helps. we also found out that we were calling for the same PWM port for 2 different objects i think.
|
Re: Robot drive... Output not updated enough.
This error message is a frustrating one because it would seem that this error would originate from the RobotDrive class, however, the real problem could be in any part of your code. This displays whenever your code is running too slowly, and will subsequently disable your drive functions (and probably everything else, not sure though, I haven't spent too much time trying the different functions when this has popped up). Anyway, this message appears a lot if you are doing image processing on the cRio because that takes longer than the 20mS loop time. Other (more likely culprits) include infinite loops (or any loop that lasts longer than 20mS), methods that call themselves without end (I had a setMotorSpeed(speed) method that called setMotorSpeed(speed) at the end of it instead of motor.set(speed)), and anything else that potentially stops or slows the code.
It may be helpful to add your own output messages throughout your code, then you will see what is getting called before the RobotDrive message, and it will probably point to the area of code that is causing the stop. |
| All times are GMT -5. The time now is 12:46. |
Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2017, Jelsoft Enterprises Ltd.
Copyright © Chief Delphi