From f60fcd1bb7b1044a7da5f6ecff89289f091a2773 Mon Sep 17 00:00:00 2001 From: Clyne Sullivan Date: Thu, 22 Oct 2015 14:47:59 -0400 Subject: hey --- bin/auto.o | Bin 822 -> 0 bytes bin/init.o | Bin 1352 -> 0 bytes bin/opcontrol.o | Bin 2668 -> 0 bytes bin/output.bin | Bin 18052 -> 0 bytes bin/output.elf | Bin 61952 -> 0 bytes bin/robot.o | Bin 707 -> 0 bytes common.mk | 2 +- include/5106z.h | 121 +++++++++++++++++++++++++++++++++++++++++++++++ include/main.h | 9 ++-- src/5106z.c | 105 +++++++++++++++++++++++++++++++++++++++++ src/auto.c | 52 +-------------------- src/init.c | 16 +++---- src/opcontrol.c | 142 +++++++++++++++++++++++++++++++++++--------------------- 13 files changed, 328 insertions(+), 119 deletions(-) delete mode 100644 bin/auto.o delete mode 100644 bin/init.o delete mode 100644 bin/opcontrol.o delete mode 100755 bin/output.bin delete mode 100755 bin/output.elf delete mode 100644 bin/robot.o create mode 100644 include/5106z.h create mode 100644 src/5106z.c diff --git a/bin/auto.o b/bin/auto.o deleted file mode 100644 index eaac073..0000000 Binary files a/bin/auto.o and /dev/null differ diff --git a/bin/init.o b/bin/init.o deleted file mode 100644 index 46004b7..0000000 Binary files a/bin/init.o and /dev/null differ diff --git a/bin/opcontrol.o b/bin/opcontrol.o deleted file mode 100644 index 526f94b..0000000 Binary files a/bin/opcontrol.o and /dev/null differ diff --git a/bin/output.bin b/bin/output.bin deleted file mode 100755 index 3c052d6..0000000 Binary files a/bin/output.bin and /dev/null differ diff --git a/bin/output.elf b/bin/output.elf deleted file mode 100755 index 72ac408..0000000 Binary files a/bin/output.elf and /dev/null differ diff --git a/bin/robot.o b/bin/robot.o deleted file mode 100644 index dce8405..0000000 Binary files a/bin/robot.o and /dev/null differ diff --git a/common.mk b/common.mk index 58098f5..a552764 100644 --- a/common.mk +++ b/common.mk @@ -32,7 +32,7 @@ OUTNAME=output.elf # Flags for programs AFLAGS:=$(MCUAFLAGS) ARFLAGS:=$(MCUCFLAGS) -CCFLAGS:=-c -Wall $(MCUCFLAGS) -Os -ffunction-sections -fsigned-char -fomit-frame-pointer -fsingle-precision-constant +CCFLAGS:=-s -c -Wall $(MCUCFLAGS) -Os -ffunction-sections -fsigned-char -fomit-frame-pointer -fsingle-precision-constant CFLAGS:=$(CCFLAGS) -std=gnu99 -Werror=implicit-function-declaration CPPFLAGS:=$(CCFLAGS) -fno-exceptions -fno-rtti -felide-constructors LDFLAGS:=-Wall $(MCUCFLAGS) $(MCULFLAGS) -Wl,--gc-sections diff --git a/include/5106z.h b/include/5106z.h new file mode 100644 index 0000000..2f2f5c3 --- /dev/null +++ b/include/5106z.h @@ -0,0 +1,121 @@ +#ifndef _5106Z_H_ +#define _5106Z_H_ + +#include +#include +#include + +/* + * motor_init - Initialize motors + * + * `count` - The number of motors to enable + * `...` - The port numbers of the motors to enable + * + * Enables motors on the ports specified in the `...` arguments after + * `count`, which should say how many ports are currently being + * initialized. Motors not initialized now will be unusable until they + * are enabled. + * +*/ +void motor_init(uint8_t count,...); +/* + * motor_initIMEs + * + * Sets up IMEs for the motors that have them. This function expects the + * motors passed to it to be in order of how they are plugged in to the + * cortex. There is _no_ error checking, so... yeah. + * +*/ +void motor_initIMEs(uint8_t count,...); +/* + * motor_imeReset + * + * Resets the IME on the motor at port `port` if the motor was init'd + * using motor_initIMEs() and is enabled. + * +*/ +int motor_imeReset(uint8_t port); +/* + * motor_imeRead + * + * Returns the IME reading of the port `port` if it was init'd using + * motor_initIMEs() and is enabled. + * +*/ +int motor_imeRead(uint8_t port); +/* + * motor_enable & motor_disable + * + * `port` - The port of the motor to enable/disable + * + * These calls modify the `enable` bit of the motor. If a motor is disabled + * its speed will be set to 0 and rendered unchangeable until the motor is + * re-enabled. Any motor_* calls made to a disabled motor will immediately + * return -1. + * +*/ +void motor_enable(uint8_t port); +void motor_disable(uint8_t port); +/* + * motor_togglePolarity + * + * `port` - The port to toggle polarity on + * + * Flips the polarity of the motor on port `port` if its enabled. When a + * motor's polarity is enabled the speed written to it is inverted as it + * is passed to motorSet(). For example, if a motor's speed is 127 and it's + * polarity is enabled, the speed passed to motorSet() is -127. + * +*/ +int motor_togglePolarity(uint8_t port); +/* + * motor_setSpeed + * + * `port` - The port to set the speed of + * `speed` - The speed to set the motor to + * + * Sets the motor to the given speed, if it is enabled. Keep in mind that + * the change is not applied immediately, to apply the speeds you must + * call motor_applySpeeds(). + * +*/ +int motor_setSpeed(uint8_t port,int8_t speed); +/* + * motor_setSpeedSum + * + * `port` - The port to set the speed of + * `args` - The number of arguments following this one + * `...` - `args` variables to use for setting the speed + * + * Functions the same as motor_setSpeed(), but sets the speed to the sum + * of the arguments passed after `args`. + * +*/ +int motor_setSpeedSum(uint8_t port,uint8_t args,...); +/* + * TODO + * +*/ +int motor_setSpeedPointer(uint8_t port,int8_t *sp); +/* + * motor_setThreshold + * + * `port` - The port to set the threshold of + * `threshold` - The threshold to give the motor + * + * Sets a threshold for the motor's speed. This means that when calls to + * set this motor's speed are made in the future, the speed will only be + * applied if it's greater than `threshold` or less than -`threshold`. + * Otherwise, the speed is set to 0. + * +*/ +int motor_setThreshold(uint8_t port,uint8_t threshold); +/* + * motor_applySpeeds + * + * Applys the speeds of the enabled motors to the actual motors. + * +*/ +int motor_applySpeeds(void); + +#endif // _5106Z_H_ diff --git a/include/main.h b/include/main.h index f73b7e3..9b87513 100644 --- a/include/main.h +++ b/include/main.h @@ -3,16 +3,17 @@ #include +#define LCD_PORT uart2 + +#define ANALOG_PORT(x) (x+13) + #ifdef __cplusplus extern "C" { #endif -extern Gyro gyro; -extern unsigned int imeCount; - +void autonomous(); void initializeIO(); void initialize(); -void autonomous(); void operatorControl(); #ifdef __cplusplus diff --git a/src/5106z.c b/src/5106z.c new file mode 100644 index 0000000..83462ce --- /dev/null +++ b/src/5106z.c @@ -0,0 +1,105 @@ +#include <5106z.h> +#include + +typedef struct { + int8_t *speedP; + int8_t speed; + uint8_t thresh; + uint8_t polarity :1; + uint8_t enable :1; + uint8_t useptr :1; + uint8_t imeable :3; +} __attribute__ ((packed)) motor_t; + +static motor_t motor[11]; + +void motor_init(uint8_t count,...){ + va_list m; + uint8_t i; + memset(motor,0,11*sizeof(motor_t)); + va_start(m,count); + for(i=0;imotor[port].thresh?speed:0); +} + +int motor_setSpeedSum(uint8_t port,uint8_t args,...){ + va_list s; + uint8_t i; + int8_t speed=0; + if(!motor[port].enable)return -1; + va_start(s,args); + for(i=0;i -#include "main.h" - -/* - * Runs the user autonomous code. This function will be started in its own task with the default - * priority and stack size whenever the robot is enabled via the Field Management System or the - * VEX Competition Switch in the autonomous mode. If the robot is disabled or communications is - * lost, the autonomous task will be stopped by the kernel. Re-enabling the robot will restart - * the task, not re-start it from where it left off. - * - * Code running in the autonomous task cannot access information from the VEX Joystick. However, - * the autonomous function can be invoked from another task if a VEX Competition Switch is not - * available, and it can access joystick information if called in this way. - * - * The autonomous task may exit, unlike operatorControl() which should never exit. If it does - * so, the robot will await a switch to another mode or disable/enable cycle. - */ -void autonomous() { +void autonomous(){ } diff --git a/src/init.c b/src/init.c index f3948f0..24b5b50 100644 --- a/src/init.c +++ b/src/init.c @@ -1,15 +1,11 @@ -#include "main.h" +#include -Gyro gyro; -unsigned int imeCount=0; +unsigned int imeCount; -void initializeIO(void){ - pinMode(1,INPUT_ANALOG); +void initializeIO(){ + pinMode(ANALOG_PORT(1),INPUT_ANALOG); } -void initialize(void){ - lcdInit(uart1); - lcdClear(uart1); - gyro=gyroInit(2,0); - imeCount=imeInitializeAll(); +void initialize(){ + imeCount = imeInitializeAll(); } diff --git a/src/opcontrol.c b/src/opcontrol.c index b2896a2..6a2adee 100644 --- a/src/opcontrol.c +++ b/src/opcontrol.c @@ -1,72 +1,106 @@ -#include "main.h" +#include +#include +#include <5106z.h> -#define NEAR_THRESH 0.05f - -enum MOTOR { +enum MOTOR_PORT_MAP { UNUSED = 0, ROTATER, DRIVEL, DRIVER, LIFT1, LIFT2, - INTAKE, - UNUSED7, - UNUSED8, - UNUSED9, - UNUSED10 + INTAKE1, + INTAKE2, + INTAKE3, + INTAKE4, + PULLER, }; -static unsigned char idx=0; -static float intakeRotation=0; - -int nearDegree(float target){ - if(intakeRotationtarget+NEAR_THRESH)return -1; - else return 0; -} +static int8_t joyx = 0, // Contains the left joystick's x position + joyy = 0, // Contains the left joystick's y position + lift = 0, // Contains the desired speed for the lift + rotate = 0; // Contains the desired speed for the lift's axis -void operatorControlLCD(void *param){ - static int imeValue=0; - static float nearTarget=0; +void shell(void *unused){ + char *input=(char *)malloc(4*sizeof(char)); while(1){ - imeGet(idx,&imeValue); - intakeRotation=imeValue/1037.0f; - lcdPrint(uart1,1,"%u %d",imeCount,nearDegree(nearTarget)); - lcdPrint(uart1,2,"%u %d",idx,imeValue); - if(joystickGetDigital(1,7,JOY_LEFT)){ - if(idx)idx--; - }else if(joystickGetDigital(1,7,JOY_RIGHT)){ - if(idx "); + memset(input,0,4); + //fgets(input,4,stdin); + input[0]=fgetc(stdin); + printf("\n\r"); + switch(input[0]){ + case 'v': + input[2]=fgetc(stdin); + printf("\n\r"); + if(input[2]=='m') + printf("Main voltage: %1.3f V\n\r",powerLevelMain()/1000.0f); + else if(input[2]=='e') + printf("Expander voltage: %1.3f V\n\r",analogRead(1)/70.0f); + break; + case 't': + printf("Test\n\r"); + break; } - if(joystickGetDigital(1,8,JOY_LEFT)){ - nearTarget-=.25; - }else if(joystickGetDigital(1,8,JOY_RIGHT)){ - nearTarget+=.25; - } - delay(300); } } -void operatorControl(void){ - static char liftSpeed=0; - static char intakeSpeed=0; - taskCreate(operatorControlLCD,TASK_DEFAULT_STACK_SIZE,NULL,TASK_PRIORITY_DEFAULT); +void operatorControl(){ + + motor_init(10, // Initialize 6 motor ports + ROTATER, + DRIVEL, + DRIVER, + LIFT1, + LIFT2, + INTAKE1, + INTAKE2, + INTAKE3, + INTAKE4, + PULLER); + + motor_togglePolarity(DRIVER ); // Flip the right drive motors + motor_togglePolarity(ROTATER); // Flip the lift's rotation motor + + + + motor_setSpeedPointer(LIFT1 ,&lift ); // Always set the lift speed with `lift` + motor_setSpeedPointer(LIFT2 ,&lift ); // + motor_setSpeedPointer(ROTATER,&rotate); // Always set the lift's axis speed + // with `rotate` + + extern unsigned int imeCount; + motor_initIMEs(imeCount, + DRIVER, + DRIVEL, + 0, + 0, + ROTATER); + + // Launch the shell + taskCreate(shell,TASK_DEFAULT_STACK_SIZE,NULL,TASK_PRIORITY_DEFAULT); + while(1){ - // Set drive motors - motorSet(DRIVEL, joystickGetAnalog(1,3)); - motorSet(DRIVER,-joystickGetAnalog(1,2)); - liftSpeed=-(joystickGetDigital(1,6,JOY_UP )? 127: - joystickGetDigital(1,6,JOY_DOWN)?-127:0); - motorSet(LIFT1,liftSpeed); - motorSet(LIFT2,liftSpeed); - intakeSpeed=-(joystickGetDigital(1,5,JOY_UP )? 127: - joystickGetDigital(1,5,JOY_DOWN)?-127:0); - motorSet(INTAKE,intakeSpeed); - motorSet(ROTATER,joystickGetAnalog(1,1)); - - // test motor - //motorSet(10,joystickGetDigital(1,7,JOY_UP)?127:0); - - delay(20); + + digitalWrite(1,lcdReadButtons(LCD_PORT)); + + joyx = joystickGetAnalog(1,4); // Get joystick positions + joyy = joystickGetAnalog(1,3); // + lift = joystickGetAnalog(1,2); // + rotate = joystickGetAnalog(1,1); // + + motor_setSpeedSum(DRIVEL,2,joyy, joyx); // Set drive speeds + motor_setSpeedSum(DRIVER,2,joyy,-joyx); // + + static char huh; + huh=joystickGetDigital(1,8,JOY_UP)?127:joystickGetDigital(1,8,JOY_DOWN)?-127:0; + motor_setSpeed(INTAKE1,huh); + motor_setSpeed(INTAKE2,huh); + motor_setSpeed(INTAKE3,huh); + motor_setSpeed(INTAKE4,huh); + + motor_setSpeed(PULLER,joystickGetDigital(1,7,JOY_UP)?127:joystickGetDigital(1,7,JOY_DOWN)?-127:0); + + motor_applySpeeds(); // Apply the motor speeds } } -- cgit v1.2.3