Well i have a custom Dashboard with multiple loops along with Global variables to share the information. My question is how to stop errors from showing up? When i turn the dashboard on and the camera is off it keep giving me errors and telling me that IMAQ is not an image. Is there nay way to stop those errors from showing up? They get really annoying. Thanks!
If they are annoying to you, think about how annoying they are to the poor robot?
But seriously, the errors take considerable time for the cRio to catch and process. Your options are to fix the issue, disable the code, or you can wire the error wires together and at the end of the chain, wire it toa clear error or to the edge of a loop or structure.
It is possible to turn off the error catch and display, but that will make it much harder to find them in the future when you want to fix them.
Greg Mckaskle
These errors are not on the robot. This code is independent of the robot. It is the code for the vision processing. I have separated it into different loops in order for the code to run real time like. I know that the camera is not on but the dashboard still gives me errors in popup form. can i make it so that they don’t pop up and wait for the camera to turn on?
Another thing on errors. I am using CAN instead of PWM this year and in the Diagnostics tab it keeps giving me errors that the Jaguar timed out in teleop. I know these errors slow down the CPU on the CRio. I don’t get why i keep getting them. They are all fed inputs all the time.
Sorry. I missed that this was in the dashboard. There are two pretty easy ways. One, wire up the errors to downstream blocks, and at the end, clear the error. Or two, go to the VI properties dialog, execution page, and turn off the automatic error reporting for the VI. Do this for any VI you don’t want errors handled.
Greg Mckaskle