Chief Delphi

Chief Delphi (http://www.chiefdelphi.com/forums/index.php)
-   C/C++ (http://www.chiefdelphi.com/forums/forumdisplay.php?f=183)
-   -   CANJaguar error with 2015 C++ port sendMessage (http://www.chiefdelphi.com/forums/showthread.php?t=132271)

jreneew2 01-06-2015 06:34 PM

CANJaguar error with 2015 C++ port sendMessage
 
Hello again!

I have another error with the CANJaguar code when enabling the robot. All of our code compiles and deploys successfully, however, when we enable the robot our driver station spits out this error

Code:

Error on line 492 of CANJaguar.cpp: sendMessage
        at /home/lvuser/FRCUserProgram() [0x17088]
        at /home/lvuser/FRCUserProgram() [0x17250]
        at /home/lvuser/FRCUserProgram() [0x187e8]
        at /home/lvuser/FRCUserProgram() [0x16b64]
        at /home/lvuser/FRCUserProgram() [0x1d9b4]
        at /home/lvuser/FRCUserProgram() [0xf754]
        at /home/lvuser/FRCUserProgram() [0x134f4]
        at /home/lvuser/FRCUserProgram() [0x29f90]
        at /home/lvuser/FRCUserProgram() [0x30e54]
        at /home/lvuser/FRCUserProgram() [0xfdd8]
        at /home/lvuser/FRCUserProgram() [0x155b4]
        at /home/lvuser/FRCUserProgram() [0x1bbfc]
        at /home/lvuser/FRCUserProgram() [0xfee4]
        at __libc_start_main

And I went to look at CANJaguar at line 492 and this is the function:

Code:

void CANJaguar::sendMessage(uint32_t messageID, const uint8_t *data, uint8_t dataSize, int32_t period)
{
        int32_t localStatus = sendMessageHelper(messageID | m_deviceNumber, data, dataSize, period);

        if(localStatus < 0)
        {
                wpi_setErrorWithContext(localStatus, "sendMessage");
        }
}

Do you guys have any ideas on what this error actually is and how we could fix it?

Thanks,
Drew

RufflesRidge 01-06-2015 06:37 PM

Re: CANJaguar error with 2015 C++ port sendMessage
 
Have you updated the Jaguar to v109 firmware? Have you checked using the roboRIO webdash that the roboRIO can see the Jaguar you are trying to talk to and that the ID is what you expect?

jreneew2 01-06-2015 06:41 PM

Re: CANJaguar error with 2015 C++ port sendMessage
 
Yeah, we have updated all of the jags to v109, however we cannot see the jags in the roboRIO panel. It only shows the PDP and the PCM. We have the roboRIO as the start of the CAN network and the terminator as one of the jags. We also have set the PDP terminator jumper switch to off, so it should be able to detect the jags after the PDP.

RufflesRidge 01-06-2015 07:23 PM

Re: CANJaguar error with 2015 C++ port sendMessage
 
Quote:

Originally Posted by jreneew2 (Post 1423136)
Yeah, we have updated all of the jags to v109, however we cannot see the jags in the roboRIO panel. It only shows the PDP and the PCM. We have the roboRIO as the start of the CAN network and the terminator as one of the jags. We also have set the PDP terminator jumper switch to off, so it should be able to detect the jags after the PDP.

If they don't show up in the webdashboard they won't work in your code either. That's the issue to solve first. It sounds like the most likely causes would be your convertor between the twisted pair and RJ connector is not wired correctly or your termination is not correct.

jreneew2 01-06-2015 07:48 PM

Re: CANJaguar error with 2015 C++ port sendMessage
 
Thanks! I'll try that. Our meeting is over today so I don't have the robot on me at the moment. (I wish we could afford some talon srx's right now!)

:)

-Drew

PaulDavis1968 01-08-2015 12:14 AM

Re: CANJaguar error with 2015 C++ port sendMessage
 
It was a wiring issue with the JAGs.

Thanks for the help.


All times are GMT -5. The time now is 09:51 AM.

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