diff options
author | Dean Camera <dean@fourwalledcubicle.com> | 2012-05-06 12:19:03 +0000 |
---|---|---|
committer | Dean Camera <dean@fourwalledcubicle.com> | 2012-05-06 12:19:03 +0000 |
commit | 9207e8b2fde713e39cd42a417decf5421d856b95 (patch) | |
tree | cbe5d94f4be632fe0766b6a089b062977fb4257f /LUFA/Drivers/Board/AVR8/BIGMULTIO | |
parent | 395e4287a1eacb617360c932beaf8aa0288ce8a6 (diff) | |
download | lufa-9207e8b2fde713e39cd42a417decf5421d856b95.tar.gz lufa-9207e8b2fde713e39cd42a417decf5421d856b95.tar.bz2 lufa-9207e8b2fde713e39cd42a417decf5421d856b95.zip |
Changed board LED driver implementations of LEDs_ToggleLEDs() for the AVR8 architecture to use the fast PIN register toggle alternative function for speed.
Diffstat (limited to 'LUFA/Drivers/Board/AVR8/BIGMULTIO')
-rw-r--r-- | LUFA/Drivers/Board/AVR8/BIGMULTIO/LEDs.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/LUFA/Drivers/Board/AVR8/BIGMULTIO/LEDs.h b/LUFA/Drivers/Board/AVR8/BIGMULTIO/LEDs.h index 4c749618a..89516dca0 100644 --- a/LUFA/Drivers/Board/AVR8/BIGMULTIO/LEDs.h +++ b/LUFA/Drivers/Board/AVR8/BIGMULTIO/LEDs.h @@ -139,8 +139,8 @@ static inline void LEDs_ToggleLEDs(const uint8_t LEDMask)
{
- PORTF ^= (LEDMask & LEDS_PORTF_LEDS);
- PORTE ^= (LEDMask & LEDS_PORTE_LEDS);
+ PINF = (LEDMask & LEDS_PORTF_LEDS);
+ PINE = (LEDMask & LEDS_PORTE_LEDS);
}
static inline uint8_t LEDs_GetLEDs(void) ATTR_WARN_UNUSED_RESULT;
|