aboutsummaryrefslogtreecommitdiffstats
path: root/LUFA/Drivers
diff options
context:
space:
mode:
authorDean Camera <dean@fourwalledcubicle.com>2011-05-09 14:04:40 +0000
committerDean Camera <dean@fourwalledcubicle.com>2011-05-09 14:04:40 +0000
commit7d3150423d8c25aba858ddff60cfe29faa7b6729 (patch)
tree77eef61d51101eb50a6596c329d8e89b0dac49d4 /LUFA/Drivers
parenta85fa30bf1ee319d3d58f7970a4b1ef7e39d92ba (diff)
downloadlufa-7d3150423d8c25aba858ddff60cfe29faa7b6729.tar.gz
lufa-7d3150423d8c25aba858ddff60cfe29faa7b6729.tar.bz2
lufa-7d3150423d8c25aba858ddff60cfe29faa7b6729.zip
Add new USE_LUFA_CONFIG_HEADER compile time option.
Add missing LEDS_ToggleLEDs() function to the LED driver for the EVK1101 board.
Diffstat (limited to 'LUFA/Drivers')
-rw-r--r--LUFA/Drivers/Board/EVK1101/LEDs.h21
1 files changed, 13 insertions, 8 deletions
diff --git a/LUFA/Drivers/Board/EVK1101/LEDs.h b/LUFA/Drivers/Board/EVK1101/LEDs.h
index 5609b7763..ddb460795 100644
--- a/LUFA/Drivers/Board/EVK1101/LEDs.h
+++ b/LUFA/Drivers/Board/EVK1101/LEDs.h
@@ -98,27 +98,32 @@
AVR32_GPIO.port[LEDS_PORT].ovrs = LEDS_ALL_LEDS;
}
- static inline void LEDs_TurnOnLEDs(const uint32_t LedMask)
+ static inline void LEDs_TurnOnLEDs(const uint32_t LEDMask)
{
- AVR32_GPIO.port[LEDS_PORT].ovrc = LedMask;
+ AVR32_GPIO.port[LEDS_PORT].ovrc = LEDMask;
}
- static inline void LEDs_TurnOffLEDs(const uint32_t LedMask)
+ static inline void LEDs_TurnOffLEDs(const uint32_t LEDMask)
{
- AVR32_GPIO.port[LEDS_PORT].ovrs = LedMask;
+ AVR32_GPIO.port[LEDS_PORT].ovrs = LEDMask;
}
- static inline void LEDs_SetAllLEDs(const uint32_t LedMask)
+ static inline void LEDs_SetAllLEDs(const uint32_t LEDMask)
{
AVR32_GPIO.port[LEDS_PORT].ovrs = LEDS_ALL_LEDS;
- AVR32_GPIO.port[LEDS_PORT].ovrc = LedMask;
+ AVR32_GPIO.port[LEDS_PORT].ovrc = LEDMask;
}
- static inline void LEDs_ChangeLEDs(const uint32_t LedMask, const uint32_t ActiveMask)
+ static inline void LEDs_ChangeLEDs(const uint32_t LEDMask, const uint32_t ActiveMask)
{
- AVR32_GPIO.port[LEDS_PORT].ovrs = LedMask;
+ AVR32_GPIO.port[LEDS_PORT].ovrs = LEDMask;
AVR32_GPIO.port[LEDS_PORT].ovrc = ActiveMask;
}
+
+ static inline void LEDs_ToggleLEDs(const uint32_t LEDMask)
+ {
+ AVR32_GPIO.port[LEDS_PORT].ovrt = LEDMask;
+ }
static inline uint32_t LEDs_GetLEDs(void) ATTR_WARN_UNUSED_RESULT;
static inline uint32_t LEDs_GetLEDs(void)