Add support for the Atmel UC3-A3 Xplained board.
This commit is contained in:
parent
1adf8174cf
commit
7aa8dc1de0
9 changed files with 311 additions and 8 deletions
|
@ -144,11 +144,13 @@
|
|||
#elif (BOARD == BOARD_B1_XPLAINED)
|
||||
#include "XMEGA/B1_XPLAINED/Buttons.h"
|
||||
#elif (BOARD == BOARD_OLIMEX32U4)
|
||||
#include "AVR8/OLIMEX32U4/Buttons.h"
|
||||
#include "AVR8/OLIMEX32U4/Buttons.h"
|
||||
#elif (BOARD == BOARD_OLIMEXT32U4)
|
||||
#include "AVR8/OLIMEXT32U4/Buttons.h"
|
||||
#include "AVR8/OLIMEXT32U4/Buttons.h"
|
||||
#elif (BOARD == BOARD_OLIMEXISPMK2)
|
||||
#include "AVR8/OLIMEXISPMK2/Buttons.h"
|
||||
#include "AVR8/OLIMEXISPMK2/Buttons.h"
|
||||
#elif (BOARD == BOARD_UC3A3_XPLAINED)
|
||||
#include "UC3/UC3A3_XPLAINED/Buttons.h"
|
||||
#else
|
||||
#include "Board/Buttons.h"
|
||||
#endif
|
||||
|
@ -167,7 +169,7 @@
|
|||
|
||||
/** Returns a mask indicating which board buttons are currently pressed.
|
||||
*
|
||||
* \return Mask indicating which board buttons are currently pressed.
|
||||
* \return Mask of \c BUTTONS_BUTTON* constants indicating which board buttons are currently pressed.
|
||||
*/
|
||||
static inline uint_reg_t Buttons_GetStatus(void) ATTR_WARN_UNUSED_RESULT;
|
||||
#endif
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue