Add API support signature to the CDC and DFU class bootloaders, so that the applicati...
[pub/USBasp.git] / LUFA / Drivers / Board / AVR8 / XPLAIN / LEDs.h
index 50e150e..870d7a3 100644 (file)
@@ -35,7 +35,7 @@
  *  \note This file should not be included directly. It is automatically included as needed by the LEDs driver
  *        dispatch header located in LUFA/Drivers/Board/LEDs.h.
  */
+
 /** \ingroup Group_LEDs
  *  \defgroup Group_LEDs_XPLAIN_REV1 XPLAIN_REV1
  *  \brief Board specific LED driver header for the original Atmel XPLAIN, revision 1.
                                PORTB |= LEDS_ALL_LEDS;
                        }
 
+                       static inline void LEDs_Disable(void)
+                       {
+                               DDRB  &= ~LEDS_ALL_LEDS;
+                               PORTB &= ~LEDS_ALL_LEDS;
+                       }
+
                        static inline void LEDs_TurnOnLEDs(const uint8_t LEDMask)
                        {
                                PORTB &= ~LEDMask;