Added support for the Pololu A-Star Micro board (thanks to Joh Schneider).

This commit is contained in:
Dean Camera
2016-01-31 16:03:12 +11:00
parent 0afb548b51
commit 78478be260
6 changed files with 22 additions and 11 deletions
+3 -2
View File
@@ -93,8 +93,9 @@
#if (BOARD == BOARD_NONE)
#define BUTTONS_BUTTON1 0
static inline void Buttons_Init(void) {};
static inline uint_reg_t Buttons_GetStatus(void) { return 0; };
static inline void Buttons_Init(void) {}
static inline void Buttons_Disable(void) {}
static inline uint_reg_t Buttons_GetStatus(void) { return 0; }
#elif (BOARD == BOARD_USBKEY)
#include "AVR8/USBKEY/Buttons.h"
#elif (BOARD == BOARD_STK525)