Clean up CORE build system mode makefile.
[pub/USBasp.git] / LUFA / Drivers / Board / AVR8 / DUCE / LEDs.h
index 4c86ed4..1063d75 100644 (file)
 
                        static inline void LEDs_ToggleLEDs(const uint8_t LEDMask)
                        {
-                               PORTC ^= LEDMask;
+                               PINC  = LEDMask;
                        }
 
                        static inline uint8_t LEDs_GetLEDs(void) ATTR_WARN_UNUSED_RESULT;