Changed board LED driver implementations of LEDs_ToggleLEDs() for the AVR8 architecture to use the fast PIN register toggle alternative function for speed.
This commit is contained in:
@@ -167,9 +167,9 @@
|
||||
static inline void LEDs_ToggleLEDs(const uint8_t LEDMask)
|
||||
{
|
||||
#if (BOARD == BOARD_USB2AX)
|
||||
PORTC ^= LEDMask;
|
||||
PINC = LEDMask;
|
||||
#else
|
||||
PORTD ^= LEDMask;
|
||||
PIND = LEDMask;
|
||||
#endif
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user