projects
/
pub
/
USBasp.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Oops - fix incorrect value of AOA_CSCP_AOADataSubclass in the Android Open Accessory...
[pub/USBasp.git]
/
LUFA
/
Drivers
/
Board
/
Buttons.h
diff --git
a/LUFA/Drivers/Board/Buttons.h
b/LUFA/Drivers/Board/Buttons.h
index
d301106
..
ba6be38
100644
(file)
--- a/
LUFA/Drivers/Board/Buttons.h
+++ b/
LUFA/Drivers/Board/Buttons.h
@@
-126,26
+126,32
@@
#elif (BOARD == BOARD_EVK1101)
#include "UC3/EVK1101/Buttons.h"
#elif (BOARD == BOARD_TUL)
#elif (BOARD == BOARD_EVK1101)
#include "UC3/EVK1101/Buttons.h"
#elif (BOARD == BOARD_TUL)
- #include "AVR8/TUL/Buttons.h"
+ #include "AVR8/TUL/Buttons.h"
+ #elif (BOARD == BOARD_EVK1100)
+ #include "UC3/EVK1100/Buttons.h"
+ #elif (BOARD == BOARD_EVK1104)
+ #include "UC3/EVK1104/Buttons.h"
+ #elif (BOARD == BOARD_A3BU_XPLAINED)
+ #include "XMEGA/A3BU_XPLAINED/Buttons.h"
#else
#include "Board/Buttons.h"
#endif
#else
#include "Board/Buttons.h"
#endif
-
/* Pseudo-Functions for Doxygen: */
-
#if defined(__DOXYGEN__)
-
/** Initializes the BUTTONS driver, so that the current button position can be read. This sets the appropriate
-
* I/O pins to an inputs with pull-ups enabled.
-
*
-
* This must be called before any Button driver functions are used.
-
*/
-
static inline void Buttons_Init(void);
+ /* Pseudo-Functions for Doxygen: */
+ #if defined(__DOXYGEN__)
+ /** Initializes the BUTTONS driver, so that the current button position can be read. This sets the appropriate
+ * I/O pins to an inputs with pull-ups enabled.
+ *
+ * This must be called before any Button driver functions are used.
+ */
+ static inline void Buttons_Init(void);
-
/** Returns a mask indicating which board buttons are currently pressed.
-
*
-
* \return Mask indicating which board buttons are currently pressed.
-
*/
-
static inline uint_reg_t Buttons_GetStatus(void) ATTR_WARN_UNUSED_RESULT;
-
#endif
+ /** Returns a mask indicating which board buttons are currently pressed.
+ *
+ * \return Mask indicating which board buttons are currently pressed.
+ */
+ static inline uint_reg_t Buttons_GetStatus(void) ATTR_WARN_UNUSED_RESULT;
+ #endif
#endif
#endif