|
|
|
![]() |
|
|||||||
|
||||||||
![]() |
|
|
Thread Tools | Rate Thread | Display Modes |
|
|
|
#1
|
||||
|
||||
|
Although this might seem like those classic "Watchdog" problems, this problem is special...
We use "Iterative Robot" system to program out robot, and we implemented things like solenoids, compressors, and camera, etc... When it got kinda complicated, the watchdog lost its appetite. The robot boot fine, but whenever we enable it, the driver station immediately says "Watchdog Not Fed". I don't think that the robot even initiated the Teleop Init function right... We fed the watchdog function plenty of times, but it still won't feed... ![]() |
|
#2
|
||||
|
||||
|
Re: Watchdog Not Fed!
The most typical mistake is if you have a Wait somewhere in your code that is longer than the watchdog expiration. Wait is blocking. So while you are waiting, the watchdog starves. We don't use Wait in our code at all. We wrote our own timer callback using the Notifier class. We also implemented a state machine so that we do non-blocking wait using the timer callback to advance the state machine to the next state.
|
|
#3
|
||||
|
||||
|
We did not have any
Code:
Wait() I think it might be the camera's Code:
camera = AxisCamera::GetImage() Has anyone ever have this problem before? |
|
#4
|
|||
|
|||
|
Re: Watchdog Not Fed!
Are you disabling the watchdog during autonomous and during the constructor? The watchdog could be expiring before the teleop function sets it up properly
|
|
#5
|
||||
|
||||
|
Re: Watchdog Not Fed!
I don't understand your code. Did you mean:
Code:
camera = AxisCamera::GetInstance(); or HSLImage *image = camera.GetImage();
Last edited by mikets : 02-24-2010 at 05:16 PM. |
|
#6
|
|||
|
|||
|
Re: Watchdog Not Fed!
We had a similar problem. Discovered that the accelerometer was plugged into to the duplicate I2C _OUT_ ports. The accelerator initialization in the robot constructor was simply hanging, so our robot class never made it out of its constructor. So, as soon as the robot was enabled, the watchdog went hungry because our code hadn't started feeding it yet.
I guess the lesson from that is: make sure your code is getting to where you think it is, and check everything. |
![]() |
| Thread Tools | |
| Display Modes | Rate This Thread |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Watchdog not fed | brianelite | C/C++ | 12 | 03-14-2010 02:43 PM |
| Enabling yields one "Watchdog not fed" flash | Dylan5019 | Programming | 4 | 02-12-2010 11:45 PM |
| Autonomous Independent Code Issue Watchdog not fed | pilum40 | FRC Control System | 0 | 02-11-2010 12:00 PM |
| Watchdog Not Fed but, All Systems Are Go. | DHSrobotics | Java | 4 | 01-24-2010 10:01 PM |
| Watchdog not fed | ahudson | Programming | 1 | 01-22-2010 11:26 AM |