]> defiant.homedns.org Git - ros_wild_thumper.git/blobdiff - avr/motor_ctrl/main.c
umbmark correction
[ros_wild_thumper.git] / avr / motor_ctrl / main.c
index 824bee578c50771c2fa9ad8c68f6073e58583d2d..2ec14a12c6c26f2d581f9919a868765bb07e3527 100644 (file)
  * 0x91 Motor 2 switch
  * 0x92 Motor 3 switch
  * 0x93 Motor 4 switch
- * 0x94 TLE Error status
+ * 0x94 Front Handicap backward
+ * 0x95 Aft Handicap forward
+ * free
+ * 0xA0 Reset reason
+ * 0xA1 TLE Error status
+ * 0xA2 count test
  * free
  * 0xff Bootloader
  */
 #define KI 0.051429
 #define KD 0.000378
 #define PID_T 0.01
-#define STEP_PER_M 3376.1 // wheel diameter=12cm, encoder=48cpr, gear ratio=1:34
-#define WHEEL_DIST 0.252
+// wheel diameter=12cm, encoder=48cpr, gear ratio=1:34, real wheel diameter: 0.12454m
+#define STEP_PER_M_AVG 4171.4
+#define STEP_PER_M_LEFT (STEP_PER_M_AVG)
+#define STEP_PER_M_RIGHT (STEP_PER_M_AVG)
+#define WHEEL_DIST 0.36923 // Real: 0.252
 
 enum mode {
        MOTOR_MANUAL,
@@ -120,7 +128,6 @@ static volatile struct {
        uint8_t bUpdate;
 } cmd_vel = {0, 0, 0};
 
-static volatile uint8_t test=0;
 static volatile uint8_t ireg=0;
 static volatile uint8_t bootloader=0;
 static volatile int16_t motor1=0; // -255..+255
@@ -143,7 +150,7 @@ static volatile int16_t speed1_wish=0; // step/s
 static volatile int16_t speed2_wish=0;
 static volatile int16_t speed3_wish=0;
 static volatile int16_t speed4_wish=0;
-static volatile uint16_t run_update=0;
+static volatile uint8_t run_update=0;
 static volatile int16_t speed1=0; // step/s
 static volatile int16_t speed2=0;
 static volatile int16_t speed3=0;
@@ -153,6 +160,9 @@ static volatile ufloat_t pos_y={0.0};
 static volatile ufloat_t angle={0.0};
 static volatile float cur_speed_lin=0;
 static volatile float cur_speed_rot=0;
+static volatile uint8_t count_test=0;
+static volatile uint8_t front_handicap_bwd=0;
+static volatile uint8_t aft_handicap_fwd=0;
 
 ISR(TWI_vect)
 {
@@ -260,8 +270,8 @@ ISR(TWI_vect)
                                        break;
                                case 0x2B: // Left speed wish LSB
                                        tmp_speed.i = tmp_speed.i << 8 | TWDR;
-                                       speed1_wish = tmp_speed.f*STEP_PER_M;
-                                       speed2_wish = tmp_speed.f*STEP_PER_M;
+                                       speed1_wish = tmp_speed.f*STEP_PER_M_LEFT;
+                                       speed2_wish = tmp_speed.f*STEP_PER_M_LEFT;
                                        motor1_mode = MOTOR_PID;
                                        motor2_mode = MOTOR_PID;
                                        TWI_ACK;
@@ -280,8 +290,8 @@ ISR(TWI_vect)
                                        break;
                                case 0x2F: // Right speed wish LSB
                                        tmp_speed.i = tmp_speed.i << 8 | TWDR;
-                                       speed1_wish = tmp_speed.f*STEP_PER_M;
-                                       speed2_wish = tmp_speed.f*STEP_PER_M;
+                                       speed1_wish = tmp_speed.f*STEP_PER_M_RIGHT;
+                                       speed2_wish = tmp_speed.f*STEP_PER_M_RIGHT;
                                        motor1_mode = MOTOR_PID;
                                        motor2_mode = MOTOR_PID;
                                        TWI_ACK;
@@ -337,6 +347,16 @@ ISR(TWI_vect)
                                        motor4_switch = TWDR;
                                        TWI_ACK;
                                        break;
+                               case 0x94: // Front Handicap backward
+                                       front_handicap_bwd = TWDR;
+                                       cmd_vel.bUpdate = 1;
+                                       TWI_ACK;
+                                       break;
+                               case 0x95: // Aft Handicap forward
+                                       aft_handicap_fwd = TWDR;
+                                       cmd_vel.bUpdate = 1;
+                                       TWI_ACK;
+                                       break;
                                case 0xff: // bootloader
                                        bootloader = TWDR;
                                default:
@@ -530,26 +550,33 @@ ISR(TWI_vect)
                                        TWI_ACK;
                                        break;
                                case 0x48: // Position angle MSB
-                                       TWDR = pos_y.i>>24;
+                                       TWDR = angle.i>>24;
                                        TWI_ACK;
                                        break;
                                case 0x49: // Position angle
-                                       TWDR = pos_y.i>>16;
+                                       TWDR = angle.i>>16;
                                        TWI_ACK;
                                        break;
                                case 0x4A: // Position angle
-                                       TWDR = pos_y.i>>8;
+                                       TWDR = angle.i>>8;
                                        TWI_ACK;
                                        break;
                                case 0x4B: // Position angle LSB
-                                       TWDR = pos_y.i;
+                                       TWDR = angle.i;
+                                       TWI_ACK;
+                                       break;
+                               case 0xA0: // Reset reason
+                                       TWDR = MCUCSR & 0x0f;
+                                       MCUCSR = 0x0;
                                        TWI_ACK;
                                        break;
-                               case 0x94: // TLE Error status
-                                       //TWDR = (PIND & 0x40)>>2 | (PINB & 0x07);
-                                       TWDR=test;
+                               case 0xA1: // TLE Error status
+                                       TWDR = ~((PIND & 0x40)>>3 | (PINB & 0x07)) & 0xf;
                                        TWI_ACK;
                                        break;
+                               case 0xA2: // count test
+                                       TWDR = count_test;
+                                       TWI_ACK;
                                default:
                                        TWDR = 0;
                                        TWI_NAK;
@@ -724,53 +751,64 @@ static void update_pos(void) {
        int16_t pos3_diff;
        int16_t pos4_diff;
        float diff_left_m, diff_right_m, angle_diff, translation;
-       float pos_x_diff, pos_y_diff, angle_new;
+       float pos_x_new, pos_y_new, angle_new;
        int16_t speed_l, speed_r;
        float tmp_speed_lin, tmp_speed_rot;
+       int16_t cur_pos1, cur_pos2, cur_pos3, cur_pos4;
+       int16_t new_speed1, new_speed2, new_speed3, new_speed4;
 
+       // copy to tmp
        cli();
-       pos1_diff = pos1 - pos1_last;
-       pos2_diff = pos2 - pos2_last;
-       pos3_diff = pos3 - pos3_last;
-       pos4_diff = pos4 - pos4_last;
-       speed1 = pos1_diff/PID_T;
-       speed2 = pos2_diff/PID_T;
-       speed3 = pos3_diff/PID_T;
-       speed4 = pos4_diff/PID_T;
+       cur_pos1 = pos1;
+       cur_pos2 = pos2;
+       cur_pos3 = pos3;
+       cur_pos4 = pos4;
        sei();
 
-       diff_left_m = (pos1_diff + pos2_diff)/(2*STEP_PER_M);
-       diff_right_m = (pos3_diff + pos4_diff)/(2*STEP_PER_M);
+       pos1_diff = cur_pos1 - pos1_last;
+       pos2_diff = cur_pos2 - pos2_last;
+       pos3_diff = cur_pos3 - pos3_last;
+       pos4_diff = cur_pos4 - pos4_last;
+
+       new_speed1 = pos1_diff/PID_T;
+       new_speed2 = pos2_diff/PID_T;
+       new_speed3 = pos3_diff/PID_T;
+       new_speed4 = pos4_diff/PID_T;
+
+       diff_left_m = (pos1_diff + pos2_diff)/(2*STEP_PER_M_LEFT);
+       diff_right_m = (pos3_diff + pos4_diff)/(2*STEP_PER_M_RIGHT);
        angle_diff = (diff_right_m - diff_left_m) / WHEEL_DIST;
 
        angle_new = angle.f + angle_diff;
        if (angle_new > 2*M_PI) angle_new-=2*M_PI;
-       else if (angle_new < 2*M_PI) angle_new+=2*M_PI;
+       else if (angle_new < -2*M_PI) angle_new+=2*M_PI;
 
        translation = (diff_left_m + diff_right_m)/2.0;
-       pos_x_diff = cos(angle_new)*translation;
-       pos_y_diff = sin(angle_new)*translation;
-       
-       cli();
-       angle.f = angle_new;
-       pos_x.f += pos_x_diff;
-       pos_y.f += pos_y_diff;
-       sei();
+       pos_x_new = pos_x.f + cos(angle_new)*translation;
+       pos_y_new = pos_y.f + sin(angle_new)*translation;
 
-       speed_l = (speed1+speed2)/2;
-       speed_r = (speed3+speed4)/2;
-       tmp_speed_lin = (speed_l + speed_r)/(2.0*STEP_PER_M);
-       tmp_speed_rot = (speed_r - speed_l)/(M_PI*WHEEL_DIST*STEP_PER_M);
+       speed_l = (new_speed1+new_speed2)/2;
+       speed_r = (new_speed3+new_speed4)/2;
+       tmp_speed_lin = (speed_l + speed_r)/(2.0*STEP_PER_M_AVG);
+       tmp_speed_rot = (speed_r - speed_l)/(M_PI*WHEEL_DIST*STEP_PER_M_AVG);
 
+       // copy from tmp
        cli();
+       angle.f = angle_new;
+       pos_x.f = pos_x_new;
+       pos_y.f = pos_y_new;
+       speed1 = new_speed1;
+       speed2 = new_speed2;
+       speed3 = new_speed3;
+       speed4 = new_speed4;
        cur_speed_lin = tmp_speed_lin;
        cur_speed_rot = tmp_speed_rot;
        sei();
 
-       pos1_last = pos1;
-       pos2_last = pos2;
-       pos3_last = pos3;
-       pos4_last = pos4;
+       pos1_last = cur_pos1;
+       pos2_last = cur_pos2;
+       pos3_last = cur_pos3;
+       pos4_last = cur_pos4;
 }
 
 
@@ -862,6 +900,9 @@ int main(void) {
        DDRB = (1 << 3);
        DDRC = (1 << 7) | (1 << 6) | (1 << 5) | (1 << 4) | (1 << 3) | (1 << 2);
        DDRD = (1 << 7) | (1 << 5) | (1 << 4) | (1 << 3) | (1 << 2);
+       // Pullup TLEs EF
+       PORTB = (1 << 0) | (1 << 1) | (1 << 2);
+       PORTD = (1 << 6);
 
        bootloader = 0x00;
        setup_uart(9600);
@@ -872,7 +913,7 @@ int main(void) {
        TWI_RESET;
 
        // Motor 1 & 2
-       // Timer 1: Fast PWM inverting mode, Top=256 => 31.25kHz
+       // Timer 1: Fast PWM inverting mode, Top=256 => 15.625kHz
        // Prescaler=1
        TCCR1A = (1 << COM1A1) | (1 << COM1B1) | (1 << COM1A0) | (1 << COM1B0) | (1 << WGM10);
        TCCR1B = (1 << WGM12) | (1 << CS10);
@@ -912,30 +953,54 @@ int main(void) {
                }
 
                if (cmd_vel.bUpdate) {
-                       float speed_wish_right = cmd_vel.angle*M_PI*WHEEL_DIST/2 + cmd_vel.speed;
-                       float speed_wish_left = cmd_vel.speed*2-speed_wish_right;
+                       float speed_wish_right, speed_wish_left;
+                       float speed, angle;
 
+                       cli();
+                       speed = cmd_vel.speed;
+                       angle = cmd_vel.angle;
                        cmd_vel.bUpdate = 0;
-                       speed_wish_left*=STEP_PER_M;
-                       speed_wish_right*=STEP_PER_M;
+                       sei();
+
+                       speed_wish_right = angle*M_PI*WHEEL_DIST/2 + speed;
+                       speed_wish_left = speed*2-speed_wish_right;
 
-                       speed1_wish = speed_wish_left;
-                       speed2_wish = speed_wish_left;
-                       speed3_wish = speed_wish_right;
-                       speed4_wish = speed_wish_right;
+                       speed_wish_left*=STEP_PER_M_LEFT;
+                       speed_wish_right*=STEP_PER_M_RIGHT;
+
+                       if (speed_wish_left > 0 && aft_handicap_fwd > 0) {
+                               speed1_wish = speed_wish_left * (100-aft_handicap_fwd)/100.0;
+                       } else {
+                               speed1_wish = speed_wish_left;
+                       }
+                       if (speed_wish_left < 0 && front_handicap_bwd > 0) {
+                               speed2_wish = speed_wish_left * (100-front_handicap_bwd)/100.0;
+                       } else {
+                               speed2_wish = speed_wish_left;
+                       }
+                       if (speed_wish_right < 0 && front_handicap_bwd > 0) {
+                               speed3_wish = speed_wish_right * (100-front_handicap_bwd)/100.0;
+                       } else {
+                               speed3_wish = speed_wish_right;
+                       }
+                       if (speed_wish_right > 0 && aft_handicap_fwd > 0) {
+                               speed4_wish = speed_wish_right * (100-aft_handicap_fwd)/100.0;
+                       } else {
+                               speed4_wish = speed_wish_right;
+                       }
                        motor1_mode = MOTOR_PID;
                        motor2_mode = MOTOR_PID;
                        motor3_mode = MOTOR_PID;
                        motor4_mode = MOTOR_PID;
                }
 
-               if (run_update >= 312) { // ~100Hz
+               if (run_update >= 156) { // ~100Hz
                        run_update=0;
 
                        update_pos();
                        update_pid();
                        update_motor();
-                       test++;
+                       count_test++;
                }
 
                sleep_mode();