Skip to content
Snippets Groups Projects
Commit d3dc49e2 authored by Matthew Blue's avatar Matthew Blue
Browse files

cpu/atmega_common: Support for ATmega1284P

parent a5592139
No related branches found
No related tags found
No related merge requests found
...@@ -67,6 +67,9 @@ int adc_init(adc_t line) ...@@ -67,6 +67,9 @@ int adc_init(adc_t line)
#if defined(CPU_ATMEGA328P) #if defined(CPU_ATMEGA328P)
DDRC &= ~(1 << line); DDRC &= ~(1 << line);
PORTC &= ~(1 << line); PORTC &= ~(1 << line);
#elif defined(CPU_ATMEGA1284P)
DDRA &= ~(1 << line);
PORTA &= ~(1 << line);
#elif defined(CPU_ATMEGA2560) || defined(CPU_ATMEGA1281) #elif defined(CPU_ATMEGA2560) || defined(CPU_ATMEGA1281)
if (line < 8) { if (line < 8) {
DDRF &= ~(1 << line); DDRF &= ~(1 << line);
...@@ -108,7 +111,7 @@ int adc_sample(adc_t line, adc_res_t res) ...@@ -108,7 +111,7 @@ int adc_sample(adc_t line, adc_res_t res)
_prep(); _prep();
/* set conversion channel */ /* set conversion channel */
#if defined(CPU_ATMEGA328P) || defined(CPU_ATMEGA1281) #if defined(CPU_ATMEGA328P) || defined(CPU_ATMEGA1281) || defined(CPU_ATMEGA1284P)
ADMUX &= 0xf0; ADMUX &= 0xf0;
ADMUX |= line; ADMUX |= line;
#elif defined(CPU_ATMEGA2560) || defined(CPU_ATMEGA256RFR2) #elif defined(CPU_ATMEGA2560) || defined(CPU_ATMEGA256RFR2)
......
...@@ -140,6 +140,10 @@ int gpio_init_int(gpio_t pin, gpio_mode_t mode, gpio_flank_t flank, ...@@ -140,6 +140,10 @@ int gpio_init_int(gpio_t pin, gpio_mode_t mode, gpio_flank_t flank,
|| (_port_num(pin) != PORT_D && _port_num(pin) != PORT_E) || (_port_num(pin) != PORT_D && _port_num(pin) != PORT_E)
#elif defined(CPU_ATMEGA328P) #elif defined(CPU_ATMEGA328P)
|| (pin_num < 2) || (_port_num(pin) != PORT_D) || (pin_num < 2) || (_port_num(pin) != PORT_D)
#elif defined(CPU_ATMEGA1284P)
|| (_port_num(pin) == PORT_B && pin_num != 2)
|| (_port_num(pin) == PORT_D && pin_num < 2)
|| (_port_num(pin) != PORT_D && _port_num(pin) != PORT_D)
#endif #endif
|| ((mode != GPIO_IN) && (mode != GPIO_IN_PU))) { || ((mode != GPIO_IN) && (mode != GPIO_IN_PU))) {
return -1; return -1;
...@@ -153,6 +157,11 @@ int gpio_init_int(gpio_t pin, gpio_mode_t mode, gpio_flank_t flank, ...@@ -153,6 +157,11 @@ int gpio_init_int(gpio_t pin, gpio_mode_t mode, gpio_flank_t flank,
#if defined(CPU_ATMEGA328P) #if defined(CPU_ATMEGA328P)
/* INT pins start at PD2 instead of at PD0 */ /* INT pins start at PD2 instead of at PD0 */
pin_num -= 2; pin_num -= 2;
#elif defined(CPU_ATMEGA1284P)
/* INT pins start at PD2 instead of at PD0 on PORT_D */
if (_port_num(pin) == PORT_D) {
pin_num -= 2;
}
#endif #endif
EIMSK |= (1 << pin_num); EIMSK |= (1 << pin_num);
...@@ -186,6 +195,14 @@ void gpio_irq_enable(gpio_t pin) ...@@ -186,6 +195,14 @@ void gpio_irq_enable(gpio_t pin)
#if defined(CPU_ATMEGA328P) #if defined(CPU_ATMEGA328P)
/* INT pins start at PD2 instead of at PD0 */ /* INT pins start at PD2 instead of at PD0 */
EIMSK |= (1 << (_pin_num(pin) - 2)); EIMSK |= (1 << (_pin_num(pin) - 2));
#elif defined(CPU_ATMEGA1284P)
/* INT pins start at PD2 instead of at PD0 on PORT_D */
if (_port_num(pin) == PORT_D) {
EIMSK |= (1 << (_pin_num(pin) - 2));
}
else {
EIMSK |= (1 << _pin_num(pin));
}
#else #else
EIMSK |= (1 << _pin_num(pin)); EIMSK |= (1 << _pin_num(pin));
#endif #endif
...@@ -196,6 +213,14 @@ void gpio_irq_disable(gpio_t pin) ...@@ -196,6 +213,14 @@ void gpio_irq_disable(gpio_t pin)
#if defined(CPU_ATMEGA328P) #if defined(CPU_ATMEGA328P)
/* INT pins start at PD2 instead of at PD0 */ /* INT pins start at PD2 instead of at PD0 */
EIMSK &= ~(1 << (_pin_num(pin) - 2)); EIMSK &= ~(1 << (_pin_num(pin) - 2));
#elif defined (CPU_ATMEGA1284P)
/* INT pins start at PD2 instead of at PD0 on PORT_D */
if (_port_num(pin) == PORT_D) {
EIMSK &= ~(1 << (_pin_num(pin) - 2));
}
else {
EIMSK &= ~(1 << _pin_num(pin));
}
#else #else
EIMSK &= ~(1 << _pin_num(pin)); EIMSK &= ~(1 << _pin_num(pin));
#endif #endif
......
...@@ -57,6 +57,9 @@ void spi_init_pins(spi_t bus) ...@@ -57,6 +57,9 @@ void spi_init_pins(spi_t bus)
#if defined (CPU_ATMEGA328P) #if defined (CPU_ATMEGA328P)
DDRB |= ((1 << DDB2) | (1 << DDB3) | (1 << DDB5)); DDRB |= ((1 << DDB2) | (1 << DDB3) | (1 << DDB5));
#endif #endif
#if defined (CPU_ATMEGA1284P)
DDRB |= ((1 << DDB4) | (1 << DDB5) | (1 << DDB7));
#endif
#if defined (CPU_ATMEGA256RFR2) #if defined (CPU_ATMEGA256RFR2)
/* Master: PB3 MISO set to out /* Master: PB3 MISO set to out
* PB2 MOSI set to input by hardware * PB2 MOSI set to input by hardware
......
...@@ -212,10 +212,12 @@ ISR(TIMER_1_ISRB, ISR_BLOCK) ...@@ -212,10 +212,12 @@ ISR(TIMER_1_ISRB, ISR_BLOCK)
_isr(1, 1); _isr(1, 1);
} }
#ifdef TIMER_1_ISRC
ISR(TIMER_1_ISRC, ISR_BLOCK) ISR(TIMER_1_ISRC, ISR_BLOCK)
{ {
_isr(1, 2); _isr(1, 2);
} }
#endif /* TIMER_1_ISRC */
#endif /* TIMER_1 */ #endif /* TIMER_1 */
#ifdef TIMER_2 #ifdef TIMER_2
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment