Fix corner case in the HID report descriptor Mouse/Joystick tempates at the 8/16...
[pub/USBasp.git] / LUFA / Drivers / Board / EVK1101 / LEDs.h
index f19e464..5609b77 100644 (file)
@@ -1,21 +1,21 @@
 /*\r
              LUFA Library\r
-     Copyright (C) Dean Camera, 2010.\r
+     Copyright (C) Dean Camera, 2009.\r
               \r
   dean [at] fourwalledcubicle [dot] com\r
       www.fourwalledcubicle.com\r
 */\r
 \r
 /*\r
-  Copyright 2010  Dean Camera (dean [at] fourwalledcubicle [dot] com)\r
-\r
-  Permission to use, copy, modify, distribute, and sell this \r
-  software and its documentation for any purpose is hereby granted\r
-  without fee, provided that the above copyright notice appear in \r
-  all copies and that both that the copyright notice and this\r
-  permission notice and warranty disclaimer appear in supporting \r
-  documentation, and that the name of the author not be used in \r
-  advertising or publicity pertaining to distribution of the \r
+  Copyright 2009  Dean Camera (dean [at] fourwalledcubicle [dot] com)\r
+\r
+  Permission to use, copy, modify, and distribute this software\r
+  and its documentation for any purpose and without fee is hereby\r
+  granted, provided that the above copyright notice appear in all\r
+  copies and that both that the copyright notice and this\r
+  permission notice and warranty disclaimer appear in supporting\r
+  documentation, and that the name of the author not be used in\r
+  advertising or publicity pertaining to distribution of the\r
   software without specific, written prior permission.\r
 \r
   The author disclaim all warranties with regard to this\r
 */\r
 \r
 /** \file\r
- *\r
- *  Board specific LED driver header for the EVK1101.\r
+ *  \brief Board specific LED driver header for the Atmel EVK1101.\r
+ *  \copydetails Group_LEDs_EVK1101\r
  *\r
  *  \note This file should not be included directly. It is automatically included as needed by the LEDs driver\r
  *        dispatch header located in LUFA/Drivers/Board/LEDs.h.\r
  */\r
 \r
 /** \ingroup Group_LEDs\r
- *  @defgroup Group_LEDs_EVK1101 EVK1101\r
+ *  \defgroup Group_LEDs_EVK1101 EVK1101\r
+ *  \brief Board specific LED driver header for the Atmel EVK1101.\r
  *\r
- *  Board specific LED driver header for the EVK1101.\r
- *\r
- *  \note This file should not be included directly. It is automatically included as needed by the LEDs driver\r
- *        dispatch header located in LUFA/Drivers/Board/LEDs.h.\r
+ *  Board specific LED driver header for the Atmel EVK1101.\r
  *\r
  *  @{\r
  */\r
                        #error Do not include this file directly. Include LUFA/Drivers/Board/LEDS.h instead.\r
                #endif\r
 \r
+       /* Private Interface - For use in library only: */\r
+       #if !defined(__DOXYGEN__)\r
+               /* Macros: */\r
+                       #define LEDS_PORT        0\r
+       #endif\r
+\r
        /* Public Interface - May be used in end-application: */\r
                /* Macros: */\r
                        /** LED mask for the first LED on the board. */\r
                #if !defined(__DOXYGEN__)\r
                        static inline void LEDs_Init(void)\r
                        {\r
-                               AVR32_GPIO.port[0].gpers = LEDS_ALL_LEDS;\r
-                               AVR32_GPIO.port[0].oders = LEDS_ALL_LEDS;\r
-                               AVR32_GPIO.port[0].ovrs  = LEDS_ALL_LEDS;\r
+                               AVR32_GPIO.port[LEDS_PORT].gpers = LEDS_ALL_LEDS;\r
+                               AVR32_GPIO.port[LEDS_PORT].oders = LEDS_ALL_LEDS;\r
+                               AVR32_GPIO.port[LEDS_PORT].ovrs  = LEDS_ALL_LEDS;\r
                        }\r
                        \r
-                       static inline void LEDs_TurnOnLEDs(const uint32_t LEDMask)\r
+                       static inline void LEDs_TurnOnLEDs(const uint32_t LedMask)\r
                        {\r
-                               AVR32_GPIO.port[0].ovrc = LEDMask;\r
+                               AVR32_GPIO.port[LEDS_PORT].ovrc  = LedMask;\r
                        }\r
 \r
-                       static inline void LEDs_TurnOffLEDs(const uint32_t LEDMask)\r
+                       static inline void LEDs_TurnOffLEDs(const uint32_t LedMask)\r
                        {\r
-                               AVR32_GPIO.port[0].ovrs = LEDMask;\r
+                               AVR32_GPIO.port[LEDS_PORT].ovrs  = LedMask;\r
                        }\r
 \r
-                       static inline void LEDs_SetAllLEDs(const uint32_t LEDMask)\r
-                       {\r
-                               AVR32_GPIO.port[0].ovrs = LEDS_ALL_LEDS;\r
-                               AVR32_GPIO.port[0].ovrc = LEDMask;\r
-                       }\r
-                       \r
-                       static inline void LEDs_ChangeLEDs(const uint32_t LEDMask, const uint32_t ActiveMask)\r
+                       static inline void LEDs_SetAllLEDs(const uint32_t LedMask)\r
                        {\r
-                               AVR32_GPIO.port[0].ovrs = LEDMask;\r
-                               AVR32_GPIO.port[0].ovrc = ActiveMask;\r
+                               AVR32_GPIO.port[LEDS_PORT].ovrs  = LEDS_ALL_LEDS;\r
+                               AVR32_GPIO.port[LEDS_PORT].ovrc  = LedMask;\r
                        }\r
                        \r
-                       static inline void LEDs_ToggleLEDs(const uint32_t LEDMask)\r
+                       static inline void LEDs_ChangeLEDs(const uint32_t LedMask, const uint32_t ActiveMask)\r
                        {\r
-                               AVR32_GPIO.port[0].ovrt = LEDMask;\r
+                               AVR32_GPIO.port[LEDS_PORT].ovrs  = LedMask;\r
+                               AVR32_GPIO.port[LEDS_PORT].ovrc  = ActiveMask;\r
                        }\r
                        \r
                        static inline uint32_t LEDs_GetLEDs(void) ATTR_WARN_UNUSED_RESULT;\r
                        static inline uint32_t LEDs_GetLEDs(void)\r
                        {\r
-                               return (AVR32_GPIO.port[0].ovr & LEDS_ALL_LEDS);\r
+                               return (AVR32_GPIO.port[LEDS_PORT].ovr & LEDS_ALL_LEDS);\r
                        }\r
                #endif\r
 \r