aboutsummaryrefslogtreecommitdiffstats
path: root/LUFA/Drivers/Board/RZUSBSTICK/LEDs.h
diff options
context:
space:
mode:
authorDean Camera <dean@fourwalledcubicle.com>2010-02-22 12:58:40 +0000
committerDean Camera <dean@fourwalledcubicle.com>2010-02-22 12:58:40 +0000
commit2590452104c569f64aeefba3b06734035fb77d66 (patch)
treee37c16bf8bddfc7caf36b95b5d8071180720319a /LUFA/Drivers/Board/RZUSBSTICK/LEDs.h
parentd2ed97e34b42aff851fa8ba39c43b6cb9e4f6448 (diff)
downloadlufa-2590452104c569f64aeefba3b06734035fb77d66.tar.gz
lufa-2590452104c569f64aeefba3b06734035fb77d66.tar.bz2
lufa-2590452104c569f64aeefba3b06734035fb77d66.zip
Change over board hardware drivers to use the custom uintN_t and intN_t native word size types.
Diffstat (limited to 'LUFA/Drivers/Board/RZUSBSTICK/LEDs.h')
-rw-r--r--LUFA/Drivers/Board/RZUSBSTICK/LEDs.h11
1 files changed, 5 insertions, 6 deletions
diff --git a/LUFA/Drivers/Board/RZUSBSTICK/LEDs.h b/LUFA/Drivers/Board/RZUSBSTICK/LEDs.h
index d095d6e0f..e33aa862b 100644
--- a/LUFA/Drivers/Board/RZUSBSTICK/LEDs.h
+++ b/LUFA/Drivers/Board/RZUSBSTICK/LEDs.h
@@ -106,21 +106,21 @@
PORTE |= (LEDS_PORTE_LEDS << LEDS_PORTE_MASK_SHIFT);
}
- static inline void LEDs_TurnOnLEDs(const uint8_t LEDMask)
+ static inline void LEDs_TurnOnLEDs(const uintN_t LEDMask)
{
PORTD |= (LEDMask & LEDS_LED1);
PORTD &= ~(LEDMask & LEDS_LED2);
PORTE &= ~((LEDMask & LEDS_PORTE_LEDS) << LEDS_PORTE_MASK_SHIFT);
}
- static inline void LEDs_TurnOffLEDs(const uint8_t LEDMask)
+ static inline void LEDs_TurnOffLEDs(const uintN_t LEDMask)
{
PORTD &= ~(LEDMask & LEDS_LED1);
PORTD |= (LEDMask & LEDS_LED2);
PORTE |= ((LEDMask & LEDS_PORTE_LEDS) << LEDS_PORTE_MASK_SHIFT);
}
- static inline void LEDs_SetAllLEDs(const uint8_t LEDMask)
+ static inline void LEDs_SetAllLEDs(const uintN_t LEDMask)
{
PORTD = (((PORTD & ~LEDS_LED1) | (LEDMask & LEDS_LED1)) |
((PORTD | LEDS_LED2) & ~(LEDMask & LEDS_LED2)));
@@ -128,7 +128,7 @@
~((LEDMask & LEDS_PORTE_LEDS) << LEDS_PORTE_MASK_SHIFT));
}
- static inline void LEDs_ChangeLEDs(const uint8_t LEDMask, const uint8_t ActiveMask)
+ static inline void LEDs_ChangeLEDs(const uintN_t LEDMask, const uintN_t ActiveMask)
{
PORTD = (((PORTD & ~(LEDMask & LEDS_LED1)) | (ActiveMask & LEDS_LED1)) |
((PORTD | (LEDMask & LEDS_LED2)) & ~(ActiveMask & LEDS_LED2)));
@@ -136,13 +136,12 @@
~((ActiveMask & LEDS_PORTE_LEDS) << LEDS_PORTE_MASK_SHIFT));
}
- static inline void LEDs_ToggleLEDs(const uint8_t LEDMask)
+ static inline void LEDs_ToggleLEDs(const uintN_t LEDMask)
{
PORTD = (PORTD ^ (LEDMask & LEDS_PORTD_LEDS));
PORTE = (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)
{
return (((PORTD & LEDS_LED1) | (~PORTD & LEDS_LED2)) |