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
@@ -105,8 +105,9 @@
#define JOY_LEFT 0
#define JOY_RIGHT 0
#define JOY_PRESS 0
static inline void Joystick_Init(void) {};
static inline uint_reg_t Joystick_GetStatus(void) { return 0; };
static inline void Joystick_Init(void) {}
static inline void Joystick_Disable(void) {}
static inline uint_reg_t Joystick_GetStatus(void) { return 0; }
#elif (BOARD == BOARD_USBKEY)
#include "AVR8/USBKEY/Joystick.h"
#elif (BOARD == BOARD_STK525)