From 5d3e755cc37dea817b08e88f4697275b927c56b8 Mon Sep 17 00:00:00 2001 From: Clyne Sullivan Date: Tue, 15 Dec 2015 16:28:26 -0500 Subject: autonomizing robot --- src/zephyr.c | 110 +++++++++++++++++++++++++++-------------------------------- 1 file changed, 50 insertions(+), 60 deletions(-) (limited to 'src/zephyr.c') diff --git a/src/zephyr.c b/src/zephyr.c index 7bfd76e..6767dd8 100644 --- a/src/zephyr.c +++ b/src/zephyr.c @@ -4,56 +4,6 @@ #include #ifdef LCD_PORT - -static void (*_lcdUpdateFunc)(void *); -static char lcdBuffer[2][16]; - -void zLCDHandler(void *unused_param){ - while(1){ - lcdSetText(LCD_PORT,1,lcdBuffer[0]); - lcdSetText(LCD_PORT,2,lcdBuffer[1]); - - if(_lcdUpdateFunc) - _lcdUpdateFunc(unused_param); - - delay(LCD_RATE); - } -} - -void zLCDInit(void){ - lcdInit(LCD_PORT); - lcdClear(LCD_PORT); - lcdSetBacklight(LCD_PORT,true); -} - -void zLCDStart(void){ - taskCreate(zLCDHandler, - TASK_DEFAULT_STACK_SIZE, - NULL, - TASK_PRIORITY_DEFAULT - ); - - memset(&lcdBuffer,0,32); - strcpy(lcdBuffer[0]," libZEPHYR v1.0 "); -} - -void zLCDWrite(unsigned char line,const char *text,...){ - va_list args; - char buf[16]; - va_start(args,text); - sprintf(buf,text,args); - va_end(args); - strcpy(lcdBuffer[line-1],buf); -} - -void zLCDSetUpdateFunc(void (*func)(void *)){ - _lcdUpdateFunc = func; -} - -void zLCDClearUpdateFunc(void){ - _lcdUpdateFunc = 0; -} - #endif // LCD_PORT #ifdef GYRO_PORT @@ -67,6 +17,14 @@ void zGyroInit(void){ } } +int zGyroGet(void){ + return gyroGet(gyro); +} + +void zGyroReset(void){ + gyroReset(gyro); +} + #endif // GYRO_PORT /* @@ -88,7 +46,7 @@ const char *MOTOR_PORT_MAP[MOTOR_PORT_COUNT] = { "Left cannon", "Right cannon", "Misc", - "Port 4", + "Intake", "Intake", "Right drive", "Left drive", @@ -97,6 +55,10 @@ const char *MOTOR_PORT_MAP[MOTOR_PORT_COUNT] = { "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] = { @@ -117,11 +79,13 @@ void zIMEInit(void){ #endif // IME_ENABLE -void zMotorSet(const char *motor,char speed){ +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; + //return; } } } @@ -135,6 +99,21 @@ char zMotorGet(const char *motor){ return 0; } +void zMotorTake(const char *motor,unsigned int id){ + for(unsigned char i=0;i