aboutsummaryrefslogtreecommitdiffstats
path: root/LUFA/Drivers/Board/RZUSBSTICK
diff options
context:
space:
mode:
authorDean Camera <dean@fourwalledcubicle.com>2009-07-24 01:44:01 +0000
committerDean Camera <dean@fourwalledcubicle.com>2009-07-24 01:44:01 +0000
commit200821fe827230570e253c1679f00bcdb6c5bd94 (patch)
tree0aed41075af0b12258d1dee1c3946e61e9e4d0e0 /LUFA/Drivers/Board/RZUSBSTICK
parent3991c94b3858bbb02ca9ea6497cf60c84635b99a (diff)
downloadlufa-200821fe827230570e253c1679f00bcdb6c5bd94.tar.gz
lufa-200821fe827230570e253c1679f00bcdb6c5bd94.tar.bz2
lufa-200821fe827230570e253c1679f00bcdb6c5bd94.zip
Added new LEDs_ToggleLEDs() function to the Board LEDs driver.
Diffstat (limited to 'LUFA/Drivers/Board/RZUSBSTICK')
-rw-r--r--LUFA/Drivers/Board/RZUSBSTICK/LEDs.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/LUFA/Drivers/Board/RZUSBSTICK/LEDs.h b/LUFA/Drivers/Board/RZUSBSTICK/LEDs.h
index 24977ea5e..ecaab1edf 100644
--- a/LUFA/Drivers/Board/RZUSBSTICK/LEDs.h
+++ b/LUFA/Drivers/Board/RZUSBSTICK/LEDs.h
@@ -131,6 +131,12 @@
~((ActiveMask & LEDS_PORTE_LEDS) << LEDS_PORTE_MASK_SHIFT));
}
+ static inline void LEDs_ToggleLEDs(const uint8_t LEDMask)
+ {
+ PORTD = (PORTD ^ (LEDMask & LEDS_PORTD_LEDS));
+ PORTE = (PORTE ^ ((LEDMask & LEDS_PORTE_LEDS) << LEDS_PORTE_MASK_SHIFT));
+ }
+
static inline uint8_t LEDs_GetLEDs(void) ATTR_WARN_UNUSED_RESULT;
static inline uint8_t LEDs_GetLEDs(void)
{