#include #include #include #ifdef LCD_PORT #endif // LCD_PORT #ifdef GYRO_PORT static Gyro gyro; static bool gyroEnabled = false; void zGyroInit(void){ if((gyro=gyroInit(2,0))){ gyroEnabled = true; } } int zGyroGet(void){ return gyroGet(gyro); } void zGyroReset(void){ gyroReset(gyro); } #endif // GYRO_PORT /* * A map of what's plugged into the motor ports. * Expected declarations: * * DRIVEL - Left drive port * DRIVER - Right drive port * */ #define MOTOR_PORT_COUNT 10 #ifdef IME_ENABLE #define MOTOR_IME_COUNT 7 #endif // IME_ENABLE const char *MOTOR_PORT_MAP[MOTOR_PORT_COUNT] = { "Left cannon", "Right cannon", "Misc", "Intake", "Intake", "Right drive", "Left drive", "Lift 1", "Lift 2", "Rotater" }; static unsigned int mInUse[10]={ 0,0,0,0,0,0,0,0,0,0 }; #ifdef IME_ENABLE const char *MOTOR_IME_MAP[MOTOR_IME_COUNT] = { "Right drive", "Left drive", "Rotater", "Lift 1", "Lift 2", "Left cannon", "Right cannon" }; static unsigned int imeCount = 0; void zIMEInit(void){ imeCount = imeInitializeAll(); } #endif // IME_ENABLE void zMotorSet(const char *motor,int speed,unsigned int id){ for(unsigned char i=0;i 127)speed = 127; if(speed < -127)speed = -127; motorSet(i+1,speed); //return; } } } char zMotorGet(const char *motor){ for(unsigned char i=0;i