Fix broken code sample section spacing in the Doxygen documentation due to a missing...
[pub/USBasp.git] / LUFA / Drivers / USB / Core / USBMode.h
index 02c4ec3..7ae30bb 100644 (file)
                 */
                #define USB_SERIES_UC3A3_AVR
 
+               /** Indicates that the target AVR microcontroller belongs to the AVR32 UC3A4 Series USB controller
+                *  (i.e. AT32UC3A4*) when defined.
+                */
+               #define USB_SERIES_UC3A4_AVR
+               
                /** Indicates that the target AVR microcontroller belongs to the AVR32 UC3B0 Series USB controller
                 *  (i.e. AT32UC3B0*) when defined.
                 */
                                #define USB_CAN_BE_DEVICE
                        #endif
 
-                       #if   ( defined(USB_CAN_BE_DEVICE) &&  defined(USB_CAN_BE_HOST))
+                       #if (defined(USB_CAN_BE_DEVICE) && defined(USB_CAN_BE_HOST))
                                #define USB_CAN_BE_BOTH
-                       #elif ( defined(USB_CAN_BE_DEVICE) && !defined(USB_CAN_BE_HOST))
-                               #define USB_DEVICE_ONLY
-                       #elif (!defined(USB_CAN_BE_DEVICE) &&  defined(USB_CAN_BE_HOST))
-                               #define USB_HOST_ONLY
                        #endif
 
                        #if defined(USB_HOST_ONLY)