2009-02-19 01:06:09 +00:00
# include "config.h"
2008-12-03 05:40:16 +00:00
# include <avr/io.h>
# include <setjmp.h>
2011-05-09 20:54:01 +00:00
# ifdef JOYSTICK_SUPPORT
# include "joystick / joystick.h"
2012-03-01 23:20:05 +00:00
unsigned char waitForFire ;
# endif
# ifdef RFM12_SUPPORT
# include "rfm12/borg_rfm12.h"
2011-05-09 20:54:01 +00:00
# endif
2008-12-03 05:40:16 +00:00
//this buffer is declared in main
extern jmp_buf newmode_jmpbuf ;
# ifdef CAN_SUPPORT
# include "can / borg_can.h"
# endif
2014-08-16 05:01:07 +00:00
# ifdef UART_SUPPORT
# include "uart / uart_commands.h"
# endif
2008-12-03 05:40:16 +00:00
void wait ( int ms ) {
2014-05-15 19:20:39 +00:00
/* Always use Timer1 except for the Arduino/LoL Shield platform. */
# ifndef USER_TIMER0_FOR_WAIT
TCCR1B = _BV ( WGM12 ) | _BV ( CS12 ) ; //CTC Mode, clk/256
OCR1A = ( F_CPU / 256000 ) ; //1000Hz
/* Some Arduino/LoL Shield variants require Timer1 for multiplexing. Timer0, on
* the other hand , is free to use , which makes it a perfect candidate for our
* wait ( ) function . */
# else
// disconnect OC0A and OC0B pins, turn on CTC mode, clk/256
TCCR0A = _BV ( WGM01 ) ;
TCCR0B = _BV ( CS02 ) ;
OCR0A = ( F_CPU / 256000 ) ; //1000Hz
# endif
2012-02-12 20:47:55 +00:00
2008-12-03 05:40:16 +00:00
for ( ; ms > 0 ; ms - - ) {
# ifdef CAN_SUPPORT
bcan_process_messages ( ) ;
# endif
2014-08-16 05:01:07 +00:00
# ifdef UART_SUPPORT
uartcmd_process ( ) ;
# endif
2012-03-01 23:20:05 +00:00
# ifdef RFM12_SUPPORT
borg_rfm12_tick ( ) ;
# endif
2008-12-03 05:40:16 +00:00
# ifdef JOYSTICK_SUPPORT
if ( waitForFire ) {
//PORTJOYGND &= ~(1<<BITJOY0);
2012-02-12 20:47:55 +00:00
//PORTJOYGND &= ~(1<<BITJOY1);
2008-12-03 05:40:16 +00:00
if ( JOYISFIRE ) {
2014-08-28 01:07:37 +00:00
longjmp ( newmode_jmpbuf , 0xFEu ) ;
2008-12-03 05:40:16 +00:00
}
}
# endif
2014-05-19 06:03:44 +00:00
# if defined (__AVR_ATmega1280__) || defined (__AVR_ATmega2560__) || defined (__AVR_ATmega32U4__) || defined (__AVR_ATmega644P__) || defined (__AVR_ATmega644__) || defined (__AVR_ATmega328__) || defined (__AVR_ATmega328P__) || (__AVR_ATmega1284P__) || defined (__AVR_ATmega1284__)
2014-05-15 19:20:39 +00:00
/* Timer1 for the masses */
# ifndef USER_TIMER0_FOR_WAIT
while ( ! ( TIFR1 & _BV ( OCF1A ) ) ) ; //wait for compare match flag
TIFR1 | = _BV ( OCF1A ) ; //reset flag
/* Timer0 for e.g. Arduino/LoL Shield */
# else
while ( ! ( TIFR0 & _BV ( OCF0A ) ) ) ; //wait for compare match flag
TIFR0 | = _BV ( OCF0A ) ; //reset flag
# endif
2010-01-29 01:06:50 +00:00
# else
2009-07-09 13:37:11 +00:00
while ( ! ( TIFR & ( 1 < < OCF1A ) ) ) ; //wait for compare match flag
TIFR = ( 1 < < OCF1A ) ; //reset flag
2010-01-29 01:06:50 +00:00
# endif
2008-12-03 05:40:16 +00:00
}
}