aboutsummaryrefslogtreecommitdiffstats
path: root/LUFA/Drivers/Board/AVR8/MULTIO
diff options
context:
space:
mode:
authorDean Camera <dean@fourwalledcubicle.com>2012-07-26 19:16:58 +0000
committerDean Camera <dean@fourwalledcubicle.com>2012-07-26 19:16:58 +0000
commit5a0bd853309f30a2e1583459728df9725b1e2664 (patch)
treed7df1ebff9a9efa9773867e51c8959f13c33c58a /LUFA/Drivers/Board/AVR8/MULTIO
parentefa5d540935193010155d1beed7f4152188a7bd4 (diff)
downloadlufa-5a0bd853309f30a2e1583459728df9725b1e2664.tar.gz
lufa-5a0bd853309f30a2e1583459728df9725b1e2664.tar.bz2
lufa-5a0bd853309f30a2e1583459728df9725b1e2664.zip
Fix errors in some board driver LED_Disable() functions.
Diffstat (limited to 'LUFA/Drivers/Board/AVR8/MULTIO')
-rw-r--r--LUFA/Drivers/Board/AVR8/MULTIO/LEDs.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/LUFA/Drivers/Board/AVR8/MULTIO/LEDs.h b/LUFA/Drivers/Board/AVR8/MULTIO/LEDs.h
index 14809df28..03506b4c2 100644
--- a/LUFA/Drivers/Board/AVR8/MULTIO/LEDs.h
+++ b/LUFA/Drivers/Board/AVR8/MULTIO/LEDs.h
@@ -105,8 +105,8 @@
static inline void LEDs_Disable(void)
{
- DDRD |= LEDS_PORTD_LEDS;
- DDRC |= LEDS_PORTC_LEDS;
+ DDRD &= ~LEDS_PORTD_LEDS;
+ DDRC &= ~LEDS_PORTC_LEDS;
PORTD &= ~LEDS_PORTD_LEDS;
PORTC &= ~LEDS_PORTC_LEDS;