mirror of
https://github.com/qmk/qmk_firmware.git
synced 2025-06-12 11:54:14 +00:00
Fix build errors in Joystick device demo and library LEDs driver (on *nix systems).
This commit is contained in:
parent
526e398986
commit
938f86d063
@ -154,6 +154,7 @@ EVENT_HANDLER(USB_UnhandledControlPacket)
|
|||||||
bool GetNextReport(USB_JoystickReport_Data_t* ReportData)
|
bool GetNextReport(USB_JoystickReport_Data_t* ReportData)
|
||||||
{
|
{
|
||||||
static uint8_t PrevJoyStatus = 0;
|
static uint8_t PrevJoyStatus = 0;
|
||||||
|
static uint8_t PrevButtonStatus = 0;
|
||||||
uint8_t JoyStatus_LCL = Joystick_GetStatus();
|
uint8_t JoyStatus_LCL = Joystick_GetStatus();
|
||||||
uint8_t ButtonStatus_LCL = Buttons_GetStatus();
|
uint8_t ButtonStatus_LCL = Buttons_GetStatus();
|
||||||
bool InputChanged = false;
|
bool InputChanged = false;
|
||||||
|
@ -71,15 +71,15 @@
|
|||||||
#if !defined(BOARD)
|
#if !defined(BOARD)
|
||||||
#error BOARD must be set in makefile to a value specified in BoardTypes.h.
|
#error BOARD must be set in makefile to a value specified in BoardTypes.h.
|
||||||
#elif (BOARD == BOARD_USBKEY)
|
#elif (BOARD == BOARD_USBKEY)
|
||||||
#include "USBKEY/BUTTONS.h"
|
#include "USBKEY/Buttons.h"
|
||||||
#elif (BOARD == BOARD_STK525)
|
#elif (BOARD == BOARD_STK525)
|
||||||
#include "STK525/BUTTONS.h"
|
#include "STK525/Buttons.h"
|
||||||
#elif (BOARD == BOARD_STK526)
|
#elif (BOARD == BOARD_STK526)
|
||||||
#include "STK526/BUTTONS.h"
|
#include "STK526/Buttons.h"
|
||||||
#elif (BOARD == BOARD_ATAVRUSBRF01)
|
#elif (BOARD == BOARD_ATAVRUSBRF01)
|
||||||
#include "ATAVRUSBRF01/BUTTONS.h"
|
#include "ATAVRUSBRF01/Buttons.h"
|
||||||
#elif (BOARD == BOARD_USER)
|
#elif (BOARD == BOARD_USER)
|
||||||
#include "Board/BUTTONS.h"
|
#include "Board/Buttons.h"
|
||||||
#else
|
#else
|
||||||
#error The selected board does not contain any GPIO buttons.
|
#error The selected board does not contain any GPIO buttons.
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
Reference in New Issue
Block a user