Code not deploying properly?

So using Ecplipse when I deploy the code it tells me it’s all going well in the console. But the driver station stills shows no robot code. Do we have to reimage the rio? It worked before a couple days ago.

EDIT: Console output: http://pastebin.com/UqkW3PM1

Error Message in Driver Station: http://pastebin.com/f1rTXy8L

Did you make any code changes? If your code is crashing on startup, it may show that no robot code exists on the Rio.

You’re trying to allocate two or more devices to one PWM port. Fix that and it should work.

we don’t have the PWM hooked up. A mentor from another established team said we probably don’t need it.

Here I’ll post my code, I don’t see why it would be crashing: https://github.com/Jajoo/RoboRams

We had this same problem. We found the problem was assigning the PWM ports more than once (as Dan said). The RobotDrive can take motor controllers as parameters, so you would do something like this:


    	jagFrontLeft = new Jaguar(9);
    	jagFrontRight = new Jaguar(6);
    	jagBackLeft = new Jaguar(7); 
    	**jagBackRight** = new Jaguar(5); //in your code, this was jagBackLeft again

        **myRobot = new RobotDrive(jagFrontLeft,jagFrontRight,jagBackLeft,jagBackRight);
        //The above may not be the correct order as I do not have the Eclipse with me, but hopefully you get the idea** 

I do wish it would not compile and the error would be flagged sooner.