diff options
| author | Dean <Dean@d5102386-fcda-11dd-9fdb-3debd5008f28> | 2012-07-26 19:16:58 +0000 |
|---|---|---|
| committer | Dean <Dean@d5102386-fcda-11dd-9fdb-3debd5008f28> | 2012-07-26 19:16:58 +0000 |
| commit | bcfc863cefdca082fea8f73a05e63560bac3a5f2 (patch) | |
| tree | d7df1ebff9a9efa9773867e51c8959f13c33c58a /LUFA/Drivers/Board/AVR8/MULTIO | |
| parent | 62a978973a7befde6eecd50d8dcb0c0940688289 (diff) | |
Fix errors in some board driver LED_Disable() functions.
git-svn-id: http://lufa-lib.googlecode.com/svn/trunk@2419 d5102386-fcda-11dd-9fdb-3debd5008f28
Diffstat (limited to 'LUFA/Drivers/Board/AVR8/MULTIO')
| -rw-r--r-- | LUFA/Drivers/Board/AVR8/MULTIO/LEDs.h | 4 |
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 14809df2..03506b4c 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; |
