2019-01-18 02:46:23 -08:00
# ifndef AVR2560_H
# define AVR2560_H
# if defined(CORE_AVR)
2019-01-20 20:50:50 -08:00
# include <avr/interrupt.h>
# include <avr/io.h>
2019-01-18 02:46:23 -08:00
/*
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* General
*/
# define PORT_TYPE uint8_t //Size of the port variables (Eg inj1_pin_port).
2019-03-03 14:15:57 -08:00
# define PINMASK_TYPE uint8_t
2019-01-19 18:46:33 -08:00
void initBoard ( ) ;
2019-01-21 13:56:25 -08:00
uint16_t freeRam ( ) ;
2019-01-18 02:46:23 -08:00
2019-01-21 15:04:21 -08:00
# if defined(TIMER5_MICROS)
//#define micros() (((timer5_overflow_count << 16) + TCNT5) * 4) //Fast version of micros() that uses the 4uS tick of timer5. See timers.ino for the overflow ISR of timer5
# define millis() (ms_counter) //Replaces the standard millis() function with this macro. It is both faster and more accurate. See timers.ino for its counter increment.
static inline unsigned long micros_safe ( ) ; //A version of micros() that is interrupt safe
# else
# define micros_safe() micros() //If the timer5 method is not used, the micros_safe() macro is simply an alias for the normal micros()
# endif
2019-01-22 15:04:54 -08:00
//Mega 2561 MCU does not have a serial3 available.
# if not defined(__AVR_ATmega2561__)
# define USE_SERIAL3
# endif
2019-01-19 19:57:16 -08:00
/*
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* Schedules
*/
//Refer to http://svn.savannah.nongnu.org/viewvc/trunk/avr-libc/include/avr/iomxx0_1.h?root=avr-libc&view=markup
# define FUEL1_COUNTER TCNT3
# define FUEL2_COUNTER TCNT3
# define FUEL3_COUNTER TCNT3
# define FUEL4_COUNTER TCNT4
# define FUEL5_COUNTER TCNT1
# define FUEL6_COUNTER TCNT4 //Replaces ignition 4
# define FUEL7_COUNTER TCNT5 //Replaces ignition 3
# define FUEL8_COUNTER TCNT5 //Replaces ignition 2
# define IGN1_COUNTER TCNT5
# define IGN2_COUNTER TCNT5
# define IGN3_COUNTER TCNT5
# define IGN4_COUNTER TCNT4
# define IGN5_COUNTER TCNT1
# define IGN6_COUNTER TCNT4 //Replaces injector 4
# define IGN7_COUNTER TCNT3 //Replaces injector 3
# define IGN8_COUNTER TCNT3 //Replaces injector 2
# define FUEL1_COMPARE OCR3A
# define FUEL2_COMPARE OCR3B
# define FUEL3_COMPARE OCR3C
# define FUEL4_COMPARE OCR4B
# define FUEL5_COMPARE OCR1C //Shared with FUEL1
# define FUEL6_COMPARE OCR4A //Replaces ignition4
# define FUEL7_COMPARE OCR5C //Replaces ignition3
# define FUEL8_COMPARE OCR5B //Replaces ignition2
# define IGN1_COMPARE OCR5A
# define IGN2_COMPARE OCR5B
# define IGN3_COMPARE OCR5C
# define IGN4_COMPARE OCR4A
# define IGN5_COMPARE OCR1C
# define IGN6_COMPARE OCR4B //Replaces injector 4
# define IGN7_COMPARE OCR3C //Replaces injector 3
# define IGN8_COMPARE OCR3B //Replaces injector 2
# define FUEL1_TIMER_ENABLE() TIMSK3 |= (1 << OCIE3A) //Turn on the A compare unit (ie turn on the interrupt)
# define FUEL2_TIMER_ENABLE() TIMSK3 |= (1 << OCIE3B) //Turn on the B compare unit (ie turn on the interrupt)
# define FUEL3_TIMER_ENABLE() TIMSK3 |= (1 << OCIE3C) //Turn on the C compare unit (ie turn on the interrupt)
# define FUEL4_TIMER_ENABLE() TIMSK4 |= (1 << OCIE4B) //Turn on the B compare unit (ie turn on the interrupt)
# define FUEL5_TIMER_ENABLE() TIMSK1 |= (1 << OCIE1C) //
# define FUEL6_TIMER_ENABLE() TIMSK4 |= (1 << OCIE4A) //
# define FUEL7_TIMER_ENABLE() TIMSK5 |= (1 << OCIE5C) //
# define FUEL8_TIMER_ENABLE() TIMSK5 |= (1 << OCIE5B) //
# define FUEL1_TIMER_DISABLE() TIMSK3 &= ~(1 << OCIE3A); //Turn off this output compare unit
# define FUEL2_TIMER_DISABLE() TIMSK3 &= ~(1 << OCIE3B); //Turn off this output compare unit
# define FUEL3_TIMER_DISABLE() TIMSK3 &= ~(1 << OCIE3C); //Turn off this output compare unit
# define FUEL4_TIMER_DISABLE() TIMSK4 &= ~(1 << OCIE4B); //Turn off this output compare unit
# define FUEL5_TIMER_DISABLE() TIMSK1 &= ~(1 << OCIE1C); //
# define FUEL6_TIMER_DISABLE() TIMSK4 &= ~(1 << OCIE4A); //
# define FUEL7_TIMER_DISABLE() TIMSK5 &= ~(1 << OCIE5C); //
# define FUEL8_TIMER_DISABLE() TIMSK5 &= ~(1 << OCIE5B); //
# define IGN1_TIMER_ENABLE() TIMSK5 |= (1 << OCIE5A) //Turn on the A compare unit (ie turn on the interrupt)
# define IGN2_TIMER_ENABLE() TIMSK5 |= (1 << OCIE5B) //Turn on the B compare unit (ie turn on the interrupt)
# define IGN3_TIMER_ENABLE() TIMSK5 |= (1 << OCIE5C) //Turn on the C compare unit (ie turn on the interrupt)
# define IGN4_TIMER_ENABLE() TIMSK4 |= (1 << OCIE4A) //Turn on the A compare unit (ie turn on the interrupt)
# define IGN5_TIMER_ENABLE() TIMSK1 |= (1 << OCIE1C) //Turn on the A compare unit (ie turn on the interrupt)
# define IGN6_TIMER_ENABLE() TIMSK4 |= (1 << OCIE4B) //Replaces injector 4
# define IGN7_TIMER_ENABLE() TIMSK3 |= (1 << OCIE3C) //Replaces injector 3
# define IGN8_TIMER_ENABLE() TIMSK3 |= (1 << OCIE3B) //Replaces injector 2
# define IGN1_TIMER_DISABLE() TIMSK5 &= ~(1 << OCIE5A) //Turn off this output compare unit
# define IGN2_TIMER_DISABLE() TIMSK5 &= ~(1 << OCIE5B) //Turn off this output compare unit
# define IGN3_TIMER_DISABLE() TIMSK5 &= ~(1 << OCIE5C) //Turn off this output compare unit
# define IGN4_TIMER_DISABLE() TIMSK4 &= ~(1 << OCIE4A) //Turn off this output compare unit
# define IGN5_TIMER_DISABLE() TIMSK1 &= ~(1 << OCIE1C) //Turn off this output compare unit
# define IGN6_TIMER_DISABLE() TIMSK4 &= ~(1 << OCIE4B) //Replaces injector 4
# define IGN7_TIMER_DISABLE() TIMSK3 &= ~(1 << OCIE3C) //Replaces injector 3
# define IGN8_TIMER_DISABLE() TIMSK3 &= ~(1 << OCIE3B) //Replaces injector 2
# define MAX_TIMER_PERIOD 262140UL //The longest period of time (in uS) that the timer can permit (IN this case it is 65535 * 4, as each timer tick is 4uS)
# define MAX_TIMER_PERIOD_SLOW 1048560UL //The longest period of time (in uS) that the timer can permit (IN this case it is 65535 * 16, as each timer tick is 16uS)
# define uS_TO_TIMER_COMPARE(uS1) (uS1 >> 2) //Converts a given number of uS into the required number of timer ticks until that time has passed
//This is a hack until I make all the AVR timers run at the same speed
# define uS_TO_TIMER_COMPARE_SLOW(uS1) (uS1 >> 4)
/*
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* Auxilliaries
*/
# define ENABLE_BOOST_TIMER() TIMSK1 |= (1 << OCIE1A)
# define DISABLE_BOOST_TIMER() TIMSK1 &= ~(1 << OCIE1A)
# define ENABLE_VVT_TIMER() TIMSK1 |= (1 << OCIE1B)
# define DISABLE_VVT_TIMER() TIMSK1 &= ~(1 << OCIE1B)
# define BOOST_TIMER_COMPARE OCR1A
# define BOOST_TIMER_COUNTER TCNT1
# define VVT_TIMER_COMPARE OCR1B
# define VVT_TIMER_COUNTER TCNT1
/*
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* Idle
*/
# define IDLE_COUNTER TCNT4
# define IDLE_COMPARE OCR4C
# define IDLE_TIMER_ENABLE() TIMSK4 |= (1 << OCIE4C)
# define IDLE_TIMER_DISABLE() TIMSK4 &= ~(1 << OCIE4C)
/*
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* CAN / Second serial
*/
2019-01-18 02:46:23 -08:00
# endif //CORE_AVR
# endif //AVR2560_H