projects
/
pub
/
USBasp.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Make Host mode Class drivers only set the class driver instance's state values once...
[pub/USBasp.git]
/
LUFA
/
Drivers
/
Board
/
USBTINYMKII
/
LEDs.h
diff --git
a/LUFA/Drivers/Board/USBTINYMKII/LEDs.h
b/LUFA/Drivers/Board/USBTINYMKII/LEDs.h
index
5797b82
..
9338a20
100644
(file)
--- a/
LUFA/Drivers/Board/USBTINYMKII/LEDs.h
+++ b/
LUFA/Drivers/Board/USBTINYMKII/LEDs.h
@@
-29,9
+29,9
@@
*/
/** \file
*/
/** \file
- * \brief Board specific LED driver header for
the
USBTINY MKII.
+ * \brief Board specific LED driver header for
Tom's
USBTINY MKII.
*
*
- * Board specific LED driver header for
the
USBTINY MKII (http://tom-itx.dyndns.org:81/~webpage/).
+ * Board specific LED driver header for
Tom's
USBTINY MKII (http://tom-itx.dyndns.org:81/~webpage/).
*
* \note This file should not be included directly. It is automatically included as needed by the LEDs driver
* dispatch header located in LUFA/Drivers/Board/LEDs.h.
*
* \note This file should not be included directly. It is automatically included as needed by the LEDs driver
* dispatch header located in LUFA/Drivers/Board/LEDs.h.
@@
-40,7
+40,7
@@
/** \ingroup Group_LEDs
* @defgroup Group_LEDs_USBTINYMKII USBTINYMKII
*
/** \ingroup Group_LEDs
* @defgroup Group_LEDs_USBTINYMKII USBTINYMKII
*
- * Board specific LED driver header for
the
USBTINY MKII (http://tom-itx.dyndns.org:81/~webpage/).
+ * Board specific LED driver header for
Tom's
USBTINY MKII (http://tom-itx.dyndns.org:81/~webpage/).
*
* \note This file should not be included directly. It is automatically included as needed by the LEDs driver
* dispatch header located in LUFA/Drivers/Board/LEDs.h.
*
* \note This file should not be included directly. It is automatically included as needed by the LEDs driver
* dispatch header located in LUFA/Drivers/Board/LEDs.h.
@@
-72,10
+72,13
@@
/** LED mask for the second LED on the board. */
#define LEDS_LED2 (1 << 7)
/** LED mask for the second LED on the board. */
#define LEDS_LED2 (1 << 7)
+ /** LED mask for the third LED on the board. */
+ #define LEDS_LED3 (1 << 5)
+
/** LED mask for all the LEDs on the board. */
/** LED mask for all the LEDs on the board. */
- #define LEDS_ALL_LEDS (LEDS_LED1 | LEDS_LED2)
+ #define LEDS_ALL_LEDS (LEDS_LED1 | LEDS_LED2
| LEDS_LED3
)
- /** LED mask for
the none of the board LEDs
*/
+ /** LED mask for
none of the board LEDs.
*/
#define LEDS_NO_LEDS 0
/* Inline Functions: */
#define LEDS_NO_LEDS 0
/* Inline Functions: */
@@
-101,11
+104,17
@@
PORTB = ((PORTB & ~LEDS_ALL_LEDS) | LedMask);
}
PORTB = ((PORTB & ~LEDS_ALL_LEDS) | LedMask);
}
- static inline void LEDs_ChangeLEDs(const uint8_t LedMask, const uint8_t ActiveMask)
+ static inline void LEDs_ChangeLEDs(const uint8_t LedMask,
+ const uint8_t ActiveMask)
{
PORTB = ((PORTB & ~LedMask) | ActiveMask);
}
{
PORTB = ((PORTB & ~LedMask) | ActiveMask);
}
+ static inline void LEDs_ToggleLEDs(const uint8_t LEDMask)
+ {
+ PORTB ^= LEDMask;
+ }
+
static inline uint8_t LEDs_GetLEDs(void) ATTR_WARN_UNUSED_RESULT;
static inline uint8_t LEDs_GetLEDs(void)
{
static inline uint8_t LEDs_GetLEDs(void) ATTR_WARN_UNUSED_RESULT;
static inline uint8_t LEDs_GetLEDs(void)
{