diff options
Diffstat (limited to 'LUFA/Drivers/Board/UC3/EVK1101/Joystick.h')
-rw-r--r-- | LUFA/Drivers/Board/UC3/EVK1101/Joystick.h | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/LUFA/Drivers/Board/UC3/EVK1101/Joystick.h b/LUFA/Drivers/Board/UC3/EVK1101/Joystick.h index 892474db7..0481f8335 100644 --- a/LUFA/Drivers/Board/UC3/EVK1101/Joystick.h +++ b/LUFA/Drivers/Board/UC3/EVK1101/Joystick.h @@ -1,7 +1,7 @@ /* LUFA Library Copyright (C) Dean Camera, 2011. - + dean [at] fourwalledcubicle [dot] com www.fourwalledcubicle.com */ @@ -44,7 +44,7 @@ * * @{ */ - + #ifndef __JOYSTICK_EVK1101_H__ #define __JOYSTICK_EVK1101_H__ @@ -69,7 +69,7 @@ #define JOY_PRESS_PORT 0 #define JOY_PRESS_MASK (1UL << 13) #endif - + /* Public Interface - May be used in end-application: */ /* Macros: */ /** Mask for the joystick being pushed in the left direction. */ @@ -86,7 +86,7 @@ /** Mask for the joystick being pushed inward. */ #define JOY_PRESS (1UL << 13) - + /* Inline Functions: */ #if !defined(__DOXYGEN__) static inline void Joystick_Init(void) @@ -97,7 +97,7 @@ AVR32_GPIO.port[JOY_MOVE_PORT].puers = JOY_MOVE_MASK; AVR32_GPIO.port[JOY_PRESS_PORT].puers = JOY_PRESS_MASK; }; - + static inline uint32_t Joystick_GetStatus(void) ATTR_WARN_UNUSED_RESULT; static inline uint32_t Joystick_GetStatus(void) { @@ -114,3 +114,4 @@ #endif /** @} */ + |