forked from mfulz_github/qmk_firmware
Fixed inverted Minimus board LEDs.
This commit is contained in:
parent
6026b9128b
commit
cb9ef559a0
|
@ -108,7 +108,7 @@
|
||||||
|
|
||||||
static inline void LEDs_ToggleLEDs(const uint8_t LEDMask)
|
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;
|
static inline uint8_t LEDs_GetLEDs(void) ATTR_WARN_UNUSED_RESULT;
|
||||||
|
|
|
@ -108,7 +108,7 @@
|
||||||
|
|
||||||
static inline void LEDs_ToggleLEDs(const uint8_t LEDMask)
|
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;
|
static inline uint8_t LEDs_GetLEDs(void) ATTR_WARN_UNUSED_RESULT;
|
||||||
|
|
|
@ -111,7 +111,7 @@
|
||||||
|
|
||||||
static inline void LEDs_ToggleLEDs(const uint8_t LEDMask)
|
static inline void LEDs_ToggleLEDs(const uint8_t LEDMask)
|
||||||
{
|
{
|
||||||
PORTB = (PORTB ^ (LEDMask & LEDS_ALL_LEDS));
|
PORTB ^= LEDMask;
|
||||||
}
|
}
|
||||||
|
|
||||||
static inline uint8_t LEDs_GetLEDs(void) ATTR_WARN_UNUSED_RESULT;
|
static inline uint8_t LEDs_GetLEDs(void) ATTR_WARN_UNUSED_RESULT;
|
||||||
|
|
|
@ -85,22 +85,22 @@
|
||||||
static inline void LEDs_Init(void)
|
static inline void LEDs_Init(void)
|
||||||
{
|
{
|
||||||
DDRD |= LEDS_ALL_LEDS;
|
DDRD |= LEDS_ALL_LEDS;
|
||||||
PORTD &= ~LEDS_ALL_LEDS;
|
PORTD |= LEDS_ALL_LEDS;
|
||||||
}
|
}
|
||||||
|
|
||||||
static inline void LEDs_TurnOnLEDs(const uint8_t LEDMask)
|
static inline void LEDs_TurnOnLEDs(const uint8_t LEDMask)
|
||||||
{
|
{
|
||||||
PORTD |= LEDMask;
|
PORTD &= ~LEDMask;
|
||||||
}
|
}
|
||||||
|
|
||||||
static inline void LEDs_TurnOffLEDs(const uint8_t LEDMask)
|
static inline void LEDs_TurnOffLEDs(const uint8_t LEDMask)
|
||||||
{
|
{
|
||||||
PORTD &= ~LEDMask;
|
PORTD |= LEDMask;
|
||||||
}
|
}
|
||||||
|
|
||||||
static inline void LEDs_SetAllLEDs(const uint8_t LEDMask)
|
static inline void LEDs_SetAllLEDs(const uint8_t LEDMask)
|
||||||
{
|
{
|
||||||
PORTD = ((PORTD & ~LEDS_ALL_LEDS) | LEDMask);
|
PORTD = ((PORTD | LEDS_ALL_LEDS) & ~LEDMask);
|
||||||
}
|
}
|
||||||
|
|
||||||
static inline void LEDs_ChangeLEDs(const uint8_t LEDMask,
|
static inline void LEDs_ChangeLEDs(const uint8_t LEDMask,
|
||||||
|
@ -111,7 +111,7 @@
|
||||||
|
|
||||||
static inline void LEDs_ToggleLEDs(const uint8_t LEDMask)
|
static inline void LEDs_ToggleLEDs(const uint8_t LEDMask)
|
||||||
{
|
{
|
||||||
PORTD = (PORTD ^ (LEDMask & LEDS_ALL_LEDS));
|
PORTD ^= LEDMask;
|
||||||
}
|
}
|
||||||
|
|
||||||
static inline uint8_t LEDs_GetLEDs(void) ATTR_WARN_UNUSED_RESULT;
|
static inline uint8_t LEDs_GetLEDs(void) ATTR_WARN_UNUSED_RESULT;
|
||||||
|
|
|
@ -140,8 +140,8 @@
|
||||||
|
|
||||||
static inline void LEDs_ToggleLEDs(const uint8_t LEDMask)
|
static inline void LEDs_ToggleLEDs(const uint8_t LEDMask)
|
||||||
{
|
{
|
||||||
PORTD = (PORTD ^ (LEDMask & LEDS_PORTD_LEDS));
|
PORTD ^= (LEDMask & LEDS_PORTD_LEDS);
|
||||||
PORTE = (PORTE ^ ((LEDMask & LEDS_PORTE_LEDS) << LEDS_PORTE_MASK_SHIFT));
|
PORTE ^= ((LEDMask & LEDS_PORTE_LEDS) << LEDS_PORTE_MASK_SHIFT);
|
||||||
}
|
}
|
||||||
|
|
||||||
static inline uint8_t LEDs_GetLEDs(void) ATTR_WARN_UNUSED_RESULT;
|
static inline uint8_t LEDs_GetLEDs(void) ATTR_WARN_UNUSED_RESULT;
|
||||||
|
|
|
@ -38,6 +38,7 @@
|
||||||
* - Fixed HID host class driver incorrectly binding to HID devices that do not have an OUT endpoint
|
* - 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 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 incorrect endpoint initialisation order in the several device demos (thanks to Rick Drolet)
|
||||||
|
* - Fixed inverted Minimum board LEDs
|
||||||
* - Library Applications:
|
* - Library Applications:
|
||||||
* - Fixed Benito project discarding incoming data from the USB virtual serial port when the USART is busy
|
* - 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
|
* - Fixed broken DFU bootloader, added XPLAIN support for bootloader start when XCK jumpered to ground
|
||||||
|
|
Loading…
Reference in New Issue