aboutsummaryrefslogtreecommitdiff
path: root/LUFA/Drivers/Board/AVR8/TEENSY/LEDs.h
diff options
context:
space:
mode:
authorDean <Dean@d5102386-fcda-11dd-9fdb-3debd5008f28>2012-01-29 14:33:36 +0000
committerDean <Dean@d5102386-fcda-11dd-9fdb-3debd5008f28>2012-01-29 14:33:36 +0000
commit4478a62f1160b53f57acecf68c182a67ad8a6bd2 (patch)
tree0d5ffd18c3d061f7b91443417ce61ff07b02af3e /LUFA/Drivers/Board/AVR8/TEENSY/LEDs.h
parent5e04af2c4afa4513fd95817423119e9b4871c02a (diff)
Added new LEDs_Disable(), Buttons_Disable() and Joystick_Disable() functions to the board hardware drivers.
git-svn-id: http://lufa-lib.googlecode.com/svn/trunk@2013 d5102386-fcda-11dd-9fdb-3debd5008f28
Diffstat (limited to 'LUFA/Drivers/Board/AVR8/TEENSY/LEDs.h')
-rw-r--r--LUFA/Drivers/Board/AVR8/TEENSY/LEDs.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/LUFA/Drivers/Board/AVR8/TEENSY/LEDs.h b/LUFA/Drivers/Board/AVR8/TEENSY/LEDs.h
index 1722fe7d..8184fb90 100644
--- a/LUFA/Drivers/Board/AVR8/TEENSY/LEDs.h
+++ b/LUFA/Drivers/Board/AVR8/TEENSY/LEDs.h
@@ -94,6 +94,12 @@
#endif
}
+ static inline void LEDs_Disable(void)
+ {
+ DDRD &= ~LEDS_ALL_LEDS;
+ PORTD &= ~LEDS_ALL_LEDS;
+ }
+
static inline void LEDs_TurnOnLEDs(const uint8_t LEDMask)
{
#if (BOARD == BOARD_TEENSY2)