STM32: USB: compact code and silent a buggy doxygen warning
[bertos.git] / bertos / cpu / avr / drv / ser_avr.h
index 2e5f7c1e17da7ef0f0754e77ef70065b7f92f506..36d3a6f8fc04f766f64f531640b8f55108f12831 100644 (file)
@@ -86,11 +86,18 @@ typedef uint8_t serstatus_t;
  */
 enum
 {
-#if  CPU_AVR_ATMEGA64 || CPU_AVR_ATMEGA128 || CPU_AVR_ATMEGA1281
+#if  CPU_AVR_ATMEGA1280
        SER_UART0,
        SER_UART1,
+       SER_UART2,
+       SER_UART3,
        SER_SPI,
-#elif CPU_AVR_ATMEGA103 || CPU_AVR_ATMEGA8 || CPU_AVR_ATMEGA168 || CPU_AVR_ATMEGA328P
+#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