Changed board LED driver implementations of LEDs_ToggleLEDs() for the AVR8 architectu...
[pub/USBasp.git] / LUFA / Drivers / Board / AVR8 / TUL / LEDs.h
index 82ccb0f..e659a9a 100644 (file)
 
                        static inline void LEDs_ToggleLEDs(const uint8_t LEDMask)
                        {
-                               PORTF ^= LEDMask;
+                               PINF  = LEDMask;
                        }
 
                        static inline uint8_t LEDs_GetLEDs(void) ATTR_WARN_UNUSED_RESULT;