![]() |
Problem connecting to the CRIO
Hi Chief Delphi,
So my team has run into a little problem. For some reason when we attempt to deploy code, about 90% of the time an error comes up at a completely random time in deployment that says: "Error: waiting for real-time target CRIO to respond" We don't know what is happening to cause this or how to fix it. Sometimes it happens in the beginning of deployment, sometimes not util the end. Has anyone run into this problem before? If so how did you fix it? Thanks, Morgeno |
Re: Problem connecting to the CRIO
Hello all,
I'm from the same team and as an update, when we try to connect we get error 44002 about 50 times: Warning <Code> 44002 occurred at Ping Results: link-bad, DS radio(.4)-GOOD, robot radio(.1)-bad, cRIO(.2)-bad, FMS-bad Driver Station. It is something like this each time, except the radio flashes between GOOD and bad every other time. Both computers we have tried have windows firewall off. Any and all help is appreciated. |
Re: Problem connecting to the CRIO
Quote:
Quote:
|
Re: Problem connecting to the CRIO
Quote:
Looking further through the that website, under "Diagnostics Tab", it says Quote:
Quote:
Secondly, and you might just want to do this anyways, but have you tried this? If you hook up your router to that, it should set the IP correctly, if that's the issue. Also, something else to try: hook up directly to the cRIO and deploy to that, instead of going through the router, just to see if that works, or if you still lose connection. That's all I can think of right now... Hope that helps. |
Re: Problem connecting to the CRIO
I suspect that this is caused not by CPU load, but because the cRIO is pumping out so many error messages. Each time it does so, it causes a number of thread transitions. We discovered late last year that during those thread transitions, it is possible for the cRIO code to drop the deployment protocol.
If your Diagnostics tab is streaming errors, try another mode, tele, disable, etc. Then try to deploy. If Test is causing lots of errors, that would probably be because some I/O was not opened correctly. Test mode reads every single I/O value and displays it, so if there was a rarely used or not used Open call, it will complain about it anyway. Greg McKaskle |
Re: Problem connecting to the CRIO
We managed to find our problem. Some of our refnum names were left blank. we fixed it and it deploys now.
Thank you all for your help. EDIT: Never mind. It still isn't working. We always have it deployed when the driver station is in teleop, not test. This happens whether it is attached to the radio or CRIO. |
Re: Problem connecting to the CRIO
You may be experiencing a windows problem. we've had this same error before and all we did was reboot windows and then it worked fine
|
Re: Problem connecting to the CRIO
Quote:
|
Re: Problem connecting to the CRIO
So far, connecting directly to the CRIO actually has been working, so we're just going off of that right now. The bridge config utility isn't working on our radio. It says login failed.
|
Re: Problem connecting to the CRIO
Quote:
I'd say you should do a factory reset of the router, then go through the Bridge Configuration tool again. If you're using the router in the KoP, reset it by holding down the reset button in the back of the router for ~10 seconds. Try that, and see what your results are. |
Re: Problem connecting to the CRIO
Quote:
Quote:
|
Re: Problem connecting to the CRIO
We have tried the reset button, however it is not working. Also, connecting to the CRIO directly failed yesterday. Towards the end of deploy, when it's mostly through our global variables library, it stops.
|
Re: Problem connecting to the CRIO
When it stops, there is typically a dialog on the screen explaining what succeeded and what failed. Can you copy/paste or take a screenshot so that we can help interpret what failed?
Greg McKaskle |
Re: Problem connecting to the CRIO
The only response we get is when we are trying to connect, it will say Waiting for response from Real time Target (I forget the exact wording). When we reimage the Crio, or at the beginning of meetings, is when it seems to work the most often. Our head mentor (we don't have any actual programming mentors) said that maybe our code bugs up the CRIO image when it deploys? Also, though our electrical team said it should be irrelevant, the analog card(I think. It's whatever shows the voltage) is not in the CRIO.
|
Re: Problem connecting to the CRIO
The HW team is correct. The DS voltage will be incorrect, and you will need the module and breakout and jumper in order to pass inspection, but you don't need it right now.
My suspicion is that you have a great deal of Diagnostic errors being reported at the DS. If you can change the mode of the robot at the DS, you may find that one of the modes produces less errors and will have a better shot of deploying. If you fix the code issues that are causing the errors, the deploy issue will go away. Also, you do not need to reimage the cRIO -- almost ever. Teams do this all the time, and I'm not sure why. The file system is very robust, and if not corrupt, why do it? You may sometimes need to turn on a setting such as the no-app switch or change the CAN or other settings. Greg McKaskle |
Re: Problem connecting to the CRIO
Well the reimaging of the CRIO seemed to help. We just tried deploying a default robot project, and the CRIO was still not accepting it. Then we switched to our practice bot, with a different CRIO and a different ethernet and tried deploying our code, which didn't work, and then tried deploying a default project onto that, and that too did not work. They both were stuck in the same "waiting for the target (RT CompactRIO target) to respond."
|
Re: Problem connecting to the CRIO
Reimaging the cRIO works (in a brute force kind of way), because as a side effect it wipes out your user code that is responsible for the problem.
The No App switch (a DIP switch on the 8-slot or for the 4-slot virtual through the cRIO Imaging Tool) disables your user code when the cRIO is reset and is quicker. |
Re: Problem connecting to the CRIO
Exactly. And once the errors on the diagnostic screen are fixed, neither will be necessary. Until they are fixed, don't Run as Startup, use the run button instead.
Greg McKaskle |
Re: Problem connecting to the CRIO
Alright so I'm getting confused now. What is the diagnostics screen? The part of the driver station? Because I'm not sure how it may be in our code, seeing as the default robot project didn't deploy either.
|
Re: Problem connecting to the CRIO
It's not the code you are deploying. It's the code already running on the cRIO from the previous deploy.
The Diagnostics tab on the Driver Station has a message window. There are a lot of warnings that can obscure the real error messages, so copying and pasting all of them into a text file makes them a lot easier to look through. You can also look at the Driver Station log from the Charts tab, in the lower right is "Launch Viewer." You have to pick the latest log or two by date, then look at the Event List tab for error messages. |
Re: Problem connecting to the CRIO
I'm pretty sure I found the error. We were kind of recycling last years code, and last year they had nothing in finish.vi, so this year we assumed that we could go the same. Would this have been causing the problem? I'm in the middle of fixing it right now, so I can update with whether it works.
|
Re: Problem connecting to the CRIO
Nope never mind it's still not working. We have tested deploying quite a bit today, and it seems to work after we flash it until the first time we perma deploy onto the robot, which then causes every attempt after that first perma deploy to fail, until we flash it again. It also occasionally gives this error: Access denied: Another project is using this target. You must disconnect the existing project from the target or restart the target before establishing a new connection. Note: The existing project may be running on a different host computer.
|
Re: Problem connecting to the CRIO
That pretty much proves that it's your code.
If you want to post it we can help track it down. The Driver Station log might show very high CPU utilization. |
Re: Problem connecting to the CRIO
After searching, we still can't find any errors, so we will just only perma-deploy once code is finished, and temp deploy at all other times. We also created backup code in java.
Thank you all for all your help. |
Re: Problem connecting to the CRIO
What did you put into your finish.vi? Make sure every peripheral opened in begin, is closed in finish.
By any chance, are you using CAN? We've had these issues when a Jaguar couldn't respond back due to not being connected. |
Re: Problem connecting to the CRIO
Just as an FYI, FRC418 practically NEVER updates code via the deployment method. On a 4-slot cRIO, it's just a major pain in the butt to get the device into Safe Mode to be able to upload code.
We only FTP file updates. Assuming you don't try to run code "interactively" via the "run" button from within "Robot Main" (which disables the "Run as Startup"), we just FTP the startup.rtexe file created by the build process. It is 100% effective, and "deployment" takes seconds - instead of minutes. Remember you have a full file system under the hood, and the "deployment" phase merely uploads the startup.rtexe file (via mechanisms that seem to always be thwarted by bad robot code) and sets a token within ni-rt.ini that tells the system to load the file. If you do that manually, it always works. -Danny |
Re: Problem connecting to the CRIO
Quote:
|
| All times are GMT -5. The time now is 21:07. |
Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2017, Jelsoft Enterprises Ltd.
Copyright © Chief Delphi