X-Git-Url: https://defiant.homedns.org/gitweb/?p=ros_wild_thumper.git;a=blobdiff_plain;f=avr%2Fmotor_ctrl%2Fmain.c;h=ec9965f68800c26812a9eadf04da5e67dd3cec81;hp=abbf5386146205c5b52c55780f9b971015ecf2be;hb=540df9f5842bf55260f494c985fd75e4c54fb7cb;hpb=c3db2ea74a51a2623b04d4bc5796c39be2e28453 diff --git a/avr/motor_ctrl/main.c b/avr/motor_ctrl/main.c index abbf538..ec9965f 100644 --- a/avr/motor_ctrl/main.c +++ b/avr/motor_ctrl/main.c @@ -5,6 +5,9 @@ #include #include #include +#include +#include +#include #include "uart.h" /* @@ -97,20 +100,32 @@ */ -#define TWI_ACK TWCR = (1< 0) || (motor1_switch && motor1 < 0)) { // forward uint8_t tmp=PORTC; tmp &= ~(1 << 3); tmp |= (1 << 2); PORTC = tmp; + ENABLE_PWM_MOTOR1; } else { // motor1 < 0 // backward uint8_t tmp=PORTC; tmp &= ~(1 << 2); tmp |= (1 << 3); PORTC = tmp; + ENABLE_PWM_MOTOR1; } m1_old = motor1; @@ -723,20 +745,24 @@ static void update_motor(void) { if (motor2 == 0) { // stop PORTC &= ~(1 << 5) & ~(1 << 4); + DISABLE_PWM_MOTOR2; } else if (motor2 == PWM_BREAK) { PORTC |= (1 << 5) | (1 << 4); + ENABLE_PWM_MOTOR2; } else if ((!motor2_switch && motor2 > 0) || (motor2_switch && motor2 < 0)) { // forward uint8_t tmp=PORTC; tmp &= ~(1 << 5); tmp |= (1 << 4); PORTC = tmp; + ENABLE_PWM_MOTOR2; } else { // motor2 < 0 // backward uint8_t tmp=PORTC; tmp &= ~(1 << 4); tmp |= (1 << 5); PORTC = tmp; + ENABLE_PWM_MOTOR2; } m2_old = motor2; @@ -747,20 +773,24 @@ static void update_motor(void) { if (motor3 == 0) { // stop PORTC &= ~(1 << 7) & ~(1 << 6); + DISABLE_PWM_MOTOR3; } else if (motor3 == PWM_BREAK) { PORTC |= (1 << 7) | (1 << 6); + ENABLE_PWM_MOTOR3; } else if ((!motor3_switch && motor3 > 0) || (motor3_switch && motor3 < 0)) { // forward uint8_t tmp=PORTC; tmp &= ~(1 << 7); tmp |= (1 << 6); PORTC = tmp; + ENABLE_PWM_MOTOR3; } else { // motor3 < 0 // backward uint8_t tmp=PORTC; tmp &= ~(1 << 6); tmp |= (1 << 7); PORTC = tmp; + ENABLE_PWM_MOTOR3; } m3_old = motor3; @@ -771,20 +801,24 @@ static void update_motor(void) { if (motor4 == 0) { // stop PORTD &= ~(1 << 3) & ~(1 << 2); + DISABLE_PWM_MOTOR4; } else if (motor4 == PWM_BREAK) { PORTD |= (1 << 3) | (1 << 2); + ENABLE_PWM_MOTOR4; } else if ((!motor4_switch && motor4 > 0) || (motor4_switch && motor4 < 0)) { // forward uint8_t tmp=PORTD; tmp &= ~(1 << 3); tmp |= (1 << 2); PORTD = tmp; + ENABLE_PWM_MOTOR4; } else { // motor4 < 0 // backward uint8_t tmp=PORTD; tmp &= ~(1 << 2); tmp |= (1 << 3); PORTD = tmp; + ENABLE_PWM_MOTOR4; } m4_old = motor4; @@ -872,26 +906,25 @@ static void update_pid(void) { static int32_t esum4=0; // protect motors from damage if stalling - if (labs(esum1) > 140000 && speed1 == 0) { + if (labs(esum1) > STALL_LIMIT && speed1 == 0) { motor1 = 0; motor1_mode = MOTOR_MANUAL; error_state |= (1<<4); esum1 = 0; } - if (labs(esum2) > 140000 && speed2 == 0) { + if (labs(esum2) > STALL_LIMIT && speed2 == 0) { motor2 = 0; motor2_mode = MOTOR_MANUAL; error_state |= (1<<5); esum2 = 0; } - if (labs(esum3) > 140000 && speed3 == 0) { + if (labs(esum3) > STALL_LIMIT && speed3 == 0) { motor3 = 0; motor3_mode = MOTOR_MANUAL; error_state |= (1<<6); esum3 = 0; } - // protect motors from damage if stalling - if (labs(esum4) > 140000 && speed4 == 0) { + if (labs(esum4) > STALL_LIMIT && speed4 == 0) { motor4 = 0; motor4_mode = MOTOR_MANUAL; error_state |= (1<<7); @@ -904,7 +937,8 @@ static void update_pid(void) { speed1_wish_old = speed1_wish; } - if (speed1_wish == 0) { + uint8_t dir_change = (speed1_wish > 0 && speed1 < 0) || (speed1_wish < 0 && speed1 > 0); // Prevent dangerous immediate engine reverse + if (speed1_wish == 0 || dir_change) { motor1 = 0; eold1 = 0; error_state &= ~(1<<4); @@ -926,7 +960,8 @@ static void update_pid(void) { speed2_wish_old = speed2_wish; } - if (speed2_wish == 0) { + uint8_t dir_change = (speed2_wish > 0 && speed2 < 0) || (speed2_wish < 0 && speed2 > 0); // Prevent dangerous immediate engine reverse + if (speed2_wish == 0 || dir_change) { motor2 = 0; eold2 = 0; error_state &= ~(1<<5); @@ -948,7 +983,8 @@ static void update_pid(void) { speed3_wish_old = speed3_wish; } - if (speed3_wish == 0) { + uint8_t dir_change = (speed3_wish > 0 && speed3 < 0) || (speed3_wish < 0 && speed3 > 0); // Prevent dangerous immediate engine reverse + if (speed3_wish == 0 || dir_change) { motor3 = 0; eold3 = 0; error_state &= ~(1<<6); @@ -970,7 +1006,8 @@ static void update_pid(void) { speed4_wish_old = speed4_wish; } - if (speed4_wish == 0) { + uint8_t dir_change = (speed4_wish > 0 && speed4 < 0) || (speed4_wish < 0 && speed4 > 0); // Prevent dangerous immediate engine reverse + if (speed4_wish == 0 || dir_change) { motor4 = 0; eold4 = 0; error_state &= ~(1<<7); @@ -1014,12 +1051,15 @@ int main(void) { // I2C TWAR = 0x50; - TWI_RESET; + TWI_ACK; // Motor 1 & 2 - // Timer 1: Fast PWM non-inverting mode, Top=255 => 15.625kHz + // Also used for PWM frequency TIMER1_FREQ (F_CPU/256) + // Timer 1: Fast PWM non-inverting mode, Top=255 => 19.531kHz // Prescaler=1 - TCCR1A = (1 << COM1A1) | (1 << COM1B1) | (1 << WGM10); + //TCCR1A = (1 << COM1A1) | (1 << COM1B1) | (1 << WGM10); + // Avoid narrow spike on extreme pwm value 0 by not setting COM1*1 + TCCR1A = (1 << WGM10); TCCR1B = (1 << WGM12) | (1 << CS10); OCR1A = 0; OCR1B = 0; @@ -1027,13 +1067,17 @@ int main(void) { // Motor 3 // Timer 2: Fast PWM non-inverting mode, Top=255 // Prescaler=1 - TCCR2 = (1 << WGM21) | (1 << WGM20) | (1 << COM21) | (1 << CS20); + //TCCR2 = (1 << WGM21) | (1 << WGM20) | (1 << COM21) | (1 << CS20); + // Avoid narrow spike on extreme pwm value 0 by not setting COM21 + TCCR2 = (1 << WGM21) | (1 << WGM20) | (1 << CS20); OCR2 = 0; // Motor 4 // Timer 0: Fast PWM non-inverting mode, Top=255 // Prescaler=1 - TCCR0 = (1 << WGM01) | (1 << WGM00) | (1 << COM01) | (1 << CS00); + //TCCR0 = (1 << WGM01) | (1 << WGM00) | (1 << COM01) | (1 << CS00); + // Avoid narrow spike on extreme pwm value 0 by not setting COM01 + TCCR0 = (1 << WGM01) | (1 << WGM00) | (1 << CS00); OCR0 = 0; printf("\r\nStart\r\n"); @@ -1048,10 +1092,11 @@ int main(void) { case 0xff: // Magic reg that starts the bootloader if (bootloader == 0xa5) { cli(); - { - void (*start)(void) = (void*)0x1800; - start(); - } + // write mark to first area in eeprom + eeprom_write_byte((uint8_t*)0, 123); + eeprom_busy_wait(); + // Use watchdog to restart + wdt_enable(WDTO_15MS); } break; } @@ -1092,7 +1137,7 @@ int main(void) { motor4_mode = MOTOR_PID; } - if (run_update >= 156) { // ~100Hz + if (run_update >= 195) { // TIMER1_FREQ/195 = ~100Hz run_update=0; update_pos();