When I reprogrammed my robot and downloaded my program to my cortex, none of the motors would go. I don’t know what to do but suspect it is the programming. Please help me and here is my program:
#pragma platform(VEX)
//Competition Control and Duration Settings
#pragma competitionControl(Competition)
#pragma autonomousDuration(20)
#pragma userControlDuration(120)
#include “Vex_Competition_Includes.c” //Main competition background code…do not modify!
/////////////////////////////////////////////////////////////////////////////////////////
//
// Pre-Autonomous Functions
//
// You may want to perform some actions before the competition starts. Do them in the
// following function.
//
/////////////////////////////////////////////////////////////////////////////////////////
void pre_auton()
{
// Set bStopTasksBetweenModes to false if you want to keep user created tasks running between
// Autonomous and Tele-Op modes. You will need to manage all user created tasks if set to false.
bStopTasksBetweenModes = true;
// All activities that occur before the competition starts
// Example: clearing encoders, setting servo positions, ...
}
/////////////////////////////////////////////////////////////////////////////////////////
//
// Autonomous Task
//
// This task is used to control your robot during the autonomous phase of a VEX Competition.
// You must modify the code to add your own robot specific commands here.
//
/////////////////////////////////////////////////////////////////////////////////////////
task autonomous()
{
// …
// Insert user code here.
// …
// Remove this function call once you have “real” code.
}
/////////////////////////////////////////////////////////////////////////////////////////
//
// User Control Task
//
// This task is used to control your robot during the user control phase of a VEX Competition.
// You must modify the code to add your own robot specific commands here.
//
/////////////////////////////////////////////////////////////////////////////////////////
task usercontrol()
{
while (true)
//drive
motor[10] = vexRT(Ch2);
motor[6] = vexRT(Ch3);
//Arm lift
if (vexRT[Btn5U] == 1)
{
motor[port4] = 127;
motor[port2] = 127;
motor[port3] = 127;
motor[port5] = 127;
}
else if (vexRT[Btn5D] == 1)
{
motor[port4] = -127;
motor[port2] = -127;
motor[port3] = -127;
motor[port5] = -127;
}
else
{
motor[port4] = 0;
motor[port2] = 0;
motor[port3] = 0;
motor[port5] = 0;
//intake
}
if (vexRT[Btn6U] == 1)
{
motor[port7] = -40;
motor[port8] = -40;
}
else if (vexRT[Btn6D] == 1)
{
motor[port7] = 40;
motor[port8] = 40;
}
else
{
motor[port7] = 0;
motor[port8] = 0;
}
}