Add API support signature to the CDC and DFU class bootloaders, so that the applicati...
[pub/USBasp.git] / LUFA / Drivers / Board / AVR8 / BLACKCAT / LEDs.h
index dfb77fa..bed5345 100644 (file)
                                PORTD &= ~LEDS_ALL_LEDS;
                        }
 
+                       static inline void LEDs_Disable(void)
+                       {
+                               DDRD  &= ~LEDS_ALL_LEDS;
+                               PORTD &= ~LEDS_ALL_LEDS;
+                       }
+
                        static inline void LEDs_TurnOnLEDs(const uint8_t LEDMask)
                        {
                                PORTD |= LEDMask;
 #endif
 
 /** @} */
+