\r
static inline void LEDs_ToggleLEDs(const uint8_t LEDMask)\r
{\r
- PORTE = (PORTE ^ (LEDMask & LEDS_ALL_LEDS));\r
+ PORTE &= LEDMask;\r
}\r
\r
static inline uint8_t LEDs_GetLEDs(void) ATTR_WARN_UNUSED_RESULT;\r
static inline void LEDs_ToggleLEDs(const uint8_t LEDMask)
{
- PORTE = (PORTE ^ (LEDMask & LEDS_ALL_LEDS));
+ PORTE ^= LEDMask;
}
static inline uint8_t LEDs_GetLEDs(void) ATTR_WARN_UNUSED_RESULT;
\r
static inline void LEDs_ToggleLEDs(const uint8_t LEDMask)\r
{\r
- PORTB = (PORTB ^ (LEDMask & LEDS_ALL_LEDS));\r
+ PORTB ^= LEDMask;\r
}\r
\r
static inline uint8_t LEDs_GetLEDs(void) ATTR_WARN_UNUSED_RESULT;\r
#if !defined(__DOXYGEN__)\r
static inline void LEDs_Init(void)\r
{\r
- DDRD |= LEDS_ALL_LEDS;\r
- PORTD &= ~LEDS_ALL_LEDS;\r
+ DDRD |= LEDS_ALL_LEDS;\r
+ PORTD |= LEDS_ALL_LEDS;\r
}\r
\r
static inline void LEDs_TurnOnLEDs(const uint8_t LEDMask)\r
{\r
- PORTD |= LEDMask;\r
+ PORTD &= ~LEDMask;\r
}\r
\r
static inline void LEDs_TurnOffLEDs(const uint8_t LEDMask)\r
{\r
- PORTD &= ~LEDMask;\r
+ PORTD |= LEDMask;\r
}\r
\r
static inline void LEDs_SetAllLEDs(const uint8_t LEDMask)\r
{\r
- PORTD = ((PORTD & ~LEDS_ALL_LEDS) | LEDMask);\r
+ PORTD = ((PORTD | LEDS_ALL_LEDS) & ~LEDMask);\r
}\r
\r
static inline void LEDs_ChangeLEDs(const uint8_t LEDMask,\r
\r
static inline void LEDs_ToggleLEDs(const uint8_t LEDMask)\r
{\r
- PORTD = (PORTD ^ (LEDMask & LEDS_ALL_LEDS));\r
+ PORTD ^= LEDMask;\r
}\r
\r
static inline uint8_t LEDs_GetLEDs(void) ATTR_WARN_UNUSED_RESULT;\r
static inline void LEDs_ToggleLEDs(const uint8_t LEDMask)
{
- PORTD = (PORTD ^ (LEDMask & LEDS_PORTD_LEDS));
- PORTE = (PORTE ^ ((LEDMask & LEDS_PORTE_LEDS) << LEDS_PORTE_MASK_SHIFT));
+ PORTD ^= (LEDMask & LEDS_PORTD_LEDS);
+ PORTE ^= ((LEDMask & LEDS_PORTE_LEDS) << LEDS_PORTE_MASK_SHIFT);
}
static inline uint8_t LEDs_GetLEDs(void) ATTR_WARN_UNUSED_RESULT;
* - Fixed HID host class driver incorrectly binding to HID devices that do not have an OUT endpoint
* - Fixed incorrect definition of the HID_KEYBOARD_SC_D constant in the HID class driver (thanks to Opendous Inc.)
* - Fixed incorrect endpoint initialisation order in the several device demos (thanks to Rick Drolet)
+ * - Fixed inverted Minimum board LEDs
* - Library Applications:
* - Fixed Benito project discarding incoming data from the USB virtual serial port when the USART is busy
* - Fixed broken DFU bootloader, added XPLAIN support for bootloader start when XCK jumpered to ground