//Zijun Wei //Rover control #include #include #define output(directions,pin) (directions |= pin) // set port direction for outputs #define input(directions,pin) (directions &= (~pin)) // set port direction for inputs #define set(port,pin) (port |= pin) // set port pin #define clear(port,pin) (port &= (~pin)) // clear port pin #define pin_test(pins,pin) (pins & pin) // test for port pin #define bit_test(byte,bit) (byte & (1 << bit)) // test for bit set //for communication #define bit_delay_time 8.6 // bit delay for 115200 with overhead, 8.5 #define bit_delay() _delay_us(bit_delay_time) // RS232 bit delay #define half_bit_delay() _delay_us(bit_delay_time/2) // RS232 half bit delay #define char_delay() _delay_ms(10) // char delay // #define on_delay() _delay_us(3) // PWM on time // #define fast_off_delay() _delay_us(1) // PWM fast off time // #define medium_off_delay() _delay_us(3) // PWM medium off time // #define slow_off_delay() _delay_us(5) // PWM slow off time // // #define PWM_count 20000 // number of PWM cycles // // #define cycle_count 5 // number of speed cycles #define serial_port PORTD #define serial_direction DDRD #define serial_pins PIND #define serial_pin_in (1 << PD0) #define serial_pin_out (1 << PD1) #define max_buffer 50 #define bridge_port_1 PORTD // H-bridge port #define bridge_direction_1 DDRD // H-bridge direction #define IN1_1 (1 << PD5) // IN1_1, OC0B #define IN1_2 (1 << PD6) // IN1_2, OC0A #define bridge_port_2 PORTB // H-bridge port #define bridge_direction_2 DDRB // H-bridge direction #define IN2_1 (1 << PB1) // IN1_1, OC1A #define IN2_2 (1 << PB2) // IN1_2, OC1B //listening and talking void get_char(volatile unsigned char *pins, unsigned char pin, char *rxbyte) { // // read character into rxbyte on pins pin // assumes line driver (inverts bits) // *rxbyte = 0; while (pin_test(*pins,pin)) // // wait for start bit // ; // // delay to middle of first data bit // half_bit_delay(); bit_delay(); // // unrolled loop to read data bits // if pin_test(*pins,pin) *rxbyte |= (1 << 0); else *rxbyte |= (0 << 0); bit_delay(); if pin_test(*pins,pin) *rxbyte |= (1 << 1); else *rxbyte |= (0 << 1); bit_delay(); if pin_test(*pins,pin) *rxbyte |= (1 << 2); else *rxbyte |= (0 << 2); bit_delay(); if pin_test(*pins,pin) *rxbyte |= (1 << 3); else *rxbyte |= (0 << 3); bit_delay(); if pin_test(*pins,pin) *rxbyte |= (1 << 4); else *rxbyte |= (0 << 4); bit_delay(); if pin_test(*pins,pin) *rxbyte |= (1 << 5); else *rxbyte |= (0 << 5); bit_delay(); if pin_test(*pins,pin) *rxbyte |= (1 << 6); else *rxbyte |= (0 << 6); bit_delay(); if pin_test(*pins,pin) *rxbyte |= (1 << 7); else *rxbyte |= (0 << 7); // // wait for stop bit // bit_delay(); half_bit_delay(); } void put_char(volatile unsigned char *port, unsigned char pin, char txchar) { // // send character in txchar on port pin // assumes line driver (inverts bits) // // start bit // clear(*port,pin); bit_delay(); // // unrolled loop to write data bits // if bit_test(txchar,0) set(*port,pin); else clear(*port,pin); bit_delay(); if bit_test(txchar,1) set(*port,pin); else clear(*port,pin); bit_delay(); if bit_test(txchar,2) set(*port,pin); else clear(*port,pin); bit_delay(); if bit_test(txchar,3) set(*port,pin); else clear(*port,pin); bit_delay(); if bit_test(txchar,4) set(*port,pin); else clear(*port,pin); bit_delay(); if bit_test(txchar,5) set(*port,pin); else clear(*port,pin); bit_delay(); if bit_test(txchar,6) set(*port,pin); else clear(*port,pin); bit_delay(); if bit_test(txchar,7) set(*port,pin); else clear(*port,pin); bit_delay(); // // stop bit // set(*port,pin); bit_delay(); // // char delay // bit_delay(); } void get_string(volatile unsigned char *pins, unsigned char pin, char *str) { static int index; index = 0; // static char buffer[max_buffer]; static char chr; while (index