Add support for ATmega2560.
[bertos.git] / bertos / cpu / avr / drv / ser_avr.h
index 4fafafec6598f5778cd911552a6102b721fbe0f6..68d5e5085ee639fd3c14d469b01caaf323446afa 100644 (file)
  * invalidate any other reasons why the executable file might be covered by
  * the GNU General Public License.
  *
- * Copyright 2007 Develer S.r.l. (http://www.develer.com/)
+ * Copyright 2007, 2010 Develer S.r.l. (http://www.develer.com/)
  *
  * -->
  *
- * \version $Id$
  *
  * \author Daniele Basile <asterix@develer.com>
+ * \author Luca Ottaviano <lottaviano@develer.com>
  *
  * \brief Low-level serial module for AVR (interface).
  *
@@ -86,11 +86,18 @@ typedef uint8_t serstatus_t;
  */
 enum
 {
-#if  CPU_AVR_ATMEGA64 || CPU_AVR_ATMEGA128 || CPU_AVR_ATMEGA1281
+#if  CPU_AVR_ATMEGA1280 || CPU_AVR_ATMEGA2560
        SER_UART0,
        SER_UART1,
+       SER_UART2,
+       SER_UART3,
        SER_SPI,
-#elif CPU_AVR_ATMEGA103 || CPU_AVR_ATMEGA8
+#elif  CPU_AVR_ATMEGA64 || CPU_AVR_ATMEGA128 || CPU_AVR_ATMEGA1281
+       SER_UART0,
+       SER_UART1,
+       SER_SPI,
+#elif CPU_AVR_ATMEGA103 || CPU_AVR_ATMEGA8 || CPU_AVR_ATMEGA32 || CPU_AVR_ATMEGA168 \
+               || CPU_AVR_ATMEGA328P
        SER_UART0,
        SER_SPI,
 #else