diff options
author | Dean Camera <dean@fourwalledcubicle.com> | 2010-02-24 06:58:23 +0000 |
---|---|---|
committer | Dean Camera <dean@fourwalledcubicle.com> | 2010-02-24 06:58:23 +0000 |
commit | 071fd8ce536522ca6365580d64cd465e4c18a031 (patch) | |
tree | 604c4881c36b11f37d0203f9466d6078080847b7 /LUFA/DriverStubs/Joystick.h | |
parent | a7aaa45ec4c3f415bf6073a5cc016635d5ecf77d (diff) | |
download | lufa-071fd8ce536522ca6365580d64cd465e4c18a031.tar.gz lufa-071fd8ce536522ca6365580d64cd465e4c18a031.tar.bz2 lufa-071fd8ce536522ca6365580d64cd465e4c18a031.zip |
Revert changes made for the partial port to the AVR32 architecture.
Diffstat (limited to 'LUFA/DriverStubs/Joystick.h')
-rw-r--r-- | LUFA/DriverStubs/Joystick.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/LUFA/DriverStubs/Joystick.h b/LUFA/DriverStubs/Joystick.h index 859225f13..21e306f1e 100644 --- a/LUFA/DriverStubs/Joystick.h +++ b/LUFA/DriverStubs/Joystick.h @@ -82,7 +82,8 @@ // TODO: Initialize joystick port pins as inputs with pull-ups
}
- static inline uintN_t Joystick_GetStatus(void)
+ static inline uint8_t Joystick_GetStatus(void) ATTR_WARN_UNUSED_RESULT;
+ static inline uint8_t Joystick_GetStatus(void)
{
// TODO: Return current joystick position data which can be obtained by masking against the JOY_* macros
}
|