
Robot C program does not run with VEXNET (HELP!)
I just recieved a vexnet kit and have installed the hardware on the microcontroller. I've downloaded both the IFI Master Firmware V8 and the RobotC vex firmware.
I opened a competition template file and added
motor[port1]=vexRT[Ch3];
motor[port2]=vexRT[Ch2];
under the section task usercontrol(). I complied and downloaded the program sucessfully but nothing happens. The VEXnet lights both say the robot and the VEXnet signal is okay but I am not able to control the robot at all.
When I just create a new file and download the following instead, it works.
task main ()
{
while (true)
{
motor[port1]= vexRT[Ch2];
motor[port2]= vexRT[Ch3];
}
}
Why does the competition template not work?!
Thanks
