Chief Delphi

Chief Delphi (http://www.chiefdelphi.com/forums/index.php)
-   Programming (http://www.chiefdelphi.com/forums/forumdisplay.php?f=51)
-   -   Driver Station Errors (http://www.chiefdelphi.com/forums/showthread.php?t=92090)

cilginbilgin 17-02-2011 13:40

Driver Station Errors
 
Watchdog Expiration: System 1, User 0
ERROR <Code> -44061 occurred at "Left and Right Motors" in the VI path: Robot Main.vi
<time>19:42:17 02/17/2011
FRC: The loop that contains RobotDrive is not running fast enough. This error can occur if the loop contains too much code, or if one or more other loops are starving the RobotDrive loop.
ERROR <Code> -44061 occurred at "Left and Right Motors" in the VI path: Robot Main.vi
<time>19:41:51 02/17/2011
FRC: The loop that contains RobotDrive is not running fast enough. This error can occur if the loop contains too much code, or if one or more other loops are starving the RobotDrive loop.
ERROR <Code> -44003 occurred at WPI_CameraIssue HTTP Request with Authentication.vi>>WPI_CameraIssue Get.vi>>WPI_CameraSet Image Appearance Property.vi>>WPI_CameraSet Enum Appearance Property.vi>>WPI_CameraSet Image Size.vi>>Begin.vi>>Robot Main.vi
<time>19:41:51 02/17/2011
FRC: Operation failed due to a communication failure with the camera.
Watchdog Expiration: System 10, User 2
ERROR <Code> -44061 occurred at "Left and Right Motors" in the VI path: Robot Main.vi
<time>09:56:40 02/17/2011
FRC: The loop that contains RobotDrive is not running fast enough. This error can occur if the loop contains too much code, or if one or more other loops are starving the RobotDrive loop.
ERROR <Code> -44003 occurred at WPI_CameraIssue HTTP Request with Authentication.vi>>WPI_CameraIssue Get.vi>>WPI_CameraSet Image Appearance Property.vi>>WPI_CameraSet Enum Appearance Property.vi>>WPI_CameraSet Image Size.vi>>Begin.vi>>Robot Main.vi
<time>09:56:34 02/17/2011
FRC: Operation failed due to a communication failure with the camera.
ERROR <Code> -44027 occurred at WPI_DigitalModuleDIOCache.vi>>WPI_DigitalModuleDIO Allocator.vi>>WPI_DigitalInputOpen.vi>>Begin.vi>>R obot Main.vi
<time>09:56:32 02/17/2011
FRC: The DIO channel has already been allocated.
ERROR <Code> -44061 occurred at "Left and Right Motors" in the VI path: Robot Main.vi
<time>09:53:12 02/17/2011


I am getting these kinds of errors when I enable on my driver station!


I would be very grateful if anyone can help me!!!

cilginbilgin 17-02-2011 14:02

Re: Driver Station Errors
 
I also get these errrors:

FRC: The loop that contains RobotDrive is not running fast enough. This error can occur if the loop contains too much code, or if one or more other loops are starving the RobotDrive loop.
ERROR <Code> -44003 occurred at WPI_CameraIssue HTTP Request with Authentication.vi>>WPI_CameraIssue Get.vi>>WPI_CameraSet Image Appearance Property.vi>>WPI_CameraSet Enum Appearance Property.vi>>WPI_CameraSet Image Size.vi>>Begin.vi>>Robot Main.vi
<time>23:40:15 02/16/2011
FRC: Operation failed due to a communication failure with the camera.
No Change to Network Configuration: <noNICConfig><noNICConfig>
I/O unit not detected or not installed correctly.

Mark McLeod 17-02-2011 14:05

Re: Driver Station Errors
 
Watchdog Expiration: System 1, User 0
Don't worry about this one unless you get a lot of them. One is normal for changing robot modes: Disabled, Teleop, Autonomous

ERROR <Code> -44061
This means your Teleop loop might be running too slowly.
It means you aren't calling Arcade or Tank Drive quickly enough.

ERROR <Code> -44003
Is if the camera is not connected or if it's still booting when the cRIO tries to talk to it.

ERROR <Code> -44027
Means you used one of the DIO's twice.
Probably just left one of your Opens with the default DIO 1 and it conflicted with something else you Opened using that same DIO.

DavidGitz 17-02-2011 14:06

Re: Driver Station Errors
 
Quote:

Originally Posted by cilginbilgin (Post 1025164)
Watchdog Expiration: System 1, User 0

I believe these are common, we recieve these and received them last year and didn't have a problem.
Quote:

Originally Posted by cilginbilgin (Post 1025164)
ERROR <Code> -44003 occurred at WPI_CameraIssue HTTP Request with Authentication.vi>>WPI_CameraIssue Get.vi>>WPI_CameraSet Image Appearance Property.vi>>WPI_CameraSet Enum Appearance Property.vi>>WPI_CameraSet Image Size.vi>>Begin.vi>>Robot Main.vi
<time>19:41:51 02/17/2011
FRC: Operation failed due to a communication failure with the camera.

Your Camera is timing out. If you are not using the camera, make sure the Enable Vision control is False (if using LV, don't about the other IDE's). If you are using the Camera, is the indicator ring on the front of the Camera green?

Quote:

Originally Posted by cilginbilgin (Post 1025164)
ERROR <Code> -44027 occurred at WPI_DigitalModuleDIOCache.vi>>WPI_DigitalModuleDIO Allocator.vi>>WPI_DigitalInputOpen.vi>>Begin.vi>>R obot Main.vi
<time>09:56:32 02/17/2011
FRC: The DIO channel has already been allocated.

In your Begin.vi, check to make sure you are not opening 2 references with the same Digital Input

notmattlythgoe 17-02-2011 14:06

Re: Driver Station Errors
 
FRC: The DIO channel has already been allocated.

This means that you have assigned the same channel to multiple DIO's , this could be causing the loop to slow down and cause it to time out.

cilginbilgin 17-02-2011 14:20

Re: Driver Station Errors
 
Here is my Digital Input part of the Begin.vi!



Uploaded with ImageShack.us

But I dont think I have assigned same channels to two or more than two DIO s!

cilginbilgin 17-02-2011 14:35

Re: Driver Station Errors
 
Quote:

Originally Posted by Mark McLeod (Post 1025174)
Watchdog Expiration: System 1, User 0
Don't worry about this one unless you get a lot of them. One is normal for changing robot modes: Disabled, Teleop, Autonomous


Actually I am getting lots of those errors!

Watchdog Expiration: System 8, User 0
Watchdog Expiration: System 7, User 0
Watchdog Expiration: System 6, User 0
Watchdog Expiration: System 5, User 0
Watchdog Expiration: System 4, User 0

This is just the one fourth of the errors I am getting!!!

notmattlythgoe 17-02-2011 14:41

Re: Driver Station Errors
 
But I dont think I have assigned same channels to two or more than two DIO s!
-
Check to make sure that you have initialized all of the DIOs that you are using. We found out recently that if you forget to initialize something in the Begin.vi it will try to use the default values for it. This could be trying to create a default one on your Slot 4 DIO 1 channel. Also while it is trying to figure out the default it will cause a delay that triggers the watchdog problems.

Mark McLeod 17-02-2011 14:47

Re: Driver Station Errors
 
Quote:

Originally Posted by cilginbilgin (Post 1025203)
Actually I am getting lots of those errors!

That usually means the communication between the laptop and robot is flakey. It's slowed way down.

I saw this on one team still using last year's Classmate setup (with updated 2011 Driver Station).
The Classmate turned out to be "stuttering." They had too much going on on their laptop and it couldn't keep up with the robot.
That can be double checked by trying a different laptop running the Driver Station application.

It can also occur due to a weak or subpar wireless connection.
Does it still give these errors when you connect your laptop directly to the DLink on the robot via Ethernet cable?

I can't see images from Imageshack, so I can't give advice there.

cilginbilgin 17-02-2011 14:58

Re: Driver Station Errors
 
I am getting some other error after I deploy the code:

LabVIEW: Failed to load shared library FRC_UserProgram.out on RT target device.

Deployment completed with errors

Exernie 17-02-2011 18:26

Re: Driver Station Errors
 
Quote:

Originally Posted by cilginbilgin (Post 1025172)
I also get these errrors:

FRC: The loop that contains RobotDrive is not running fast enough. This error can occur if the loop contains too much code, or if one or more other loops are starving the RobotDrive loop.
ERROR <Code> -44003 occurred at WPI_CameraIssue HTTP Request with Authentication.vi>>WPI_CameraIssue Get.vi>>WPI_CameraSet Image Appearance Property.vi>>WPI_CameraSet Enum Appearance Property.vi>>WPI_CameraSet Image Size.vi>>Begin.vi>>Robot Main.vi
<time>23:40:15 02/16/2011
.

i also get this multiple times. how do we fix it.

Tom Line 17-02-2011 21:06

Re: Driver Station Errors
 
With regards to the camera call, you can either not open it in begin or plug your camera in so it runs. It's timing out because it expects the camera to talk on the ethernet port and it isn't.

With regards to the other problems (loop running slow) we nailed this one tonight after a lot of work. What clued us in to our errors was that it was still happening even when the robot is disabled. We checked the VI's that were running in disabled and found references to things that we had removed from begin. We also found a duplicated reference in begin. After fixing those our 'loop too slow' disappeared.

Exernie 17-02-2011 21:12

Re: Driver Station Errors
 
Quote:

Originally Posted by Tom Line (Post 1025521)
With regards to the camera call, you can either not open it in begin or plug your camera in so it runs. It's timing out because it expects the camera to talk on the ethernet port and it isn't.

With regards to the other problems (loop running slow) we nailed this one tonight after a lot of work. What clued us in to our errors was that it was still happening even when the robot is disabled. We checked the VI's that were running in disabled and found references to things that we had removed from begin. We also found a duplicated reference in begin. After fixing those our 'loop too slow' disappeared.

how do you find the errors and know what to delete.

Greg McKaskle 17-02-2011 21:22

Re: Driver Station Errors
 
On the driver station, click on the Diagnostics tab. The list will have error information that other posts are referring to.

Greg McKaskle

cilginbilgin 18-02-2011 08:18

Re: Driver Station Errors
 
1 Attachment(s)
ERROR <Code> -44061 occurred at "Left and Right Motors" in the VI path: Robot Main.vi
<time>09:00:09 02/18/2011
FRC: The loop that contains RobotDrive is not running fast enough. This error can occur if the loop contains too much code, or if one or more other loops are starving the RobotDrive loop.

This is the error I am getting and I couldnt manage to solve it!

Here is my Teleop.vi


All times are GMT -5. The time now is 19:46.

Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2017, Jelsoft Enterprises Ltd.
Copyright © Chief Delphi