forked from mfulz_github/qmk_firmware
Fix up the StaticAnalysis build test so that it does not report invalid configurations.
This commit is contained in:
parent
45a56b4df7
commit
c8f7cf7621
|
@ -657,6 +657,11 @@ int hard_reboot(void)
|
|||
#include <dev/usb/usb_ioctl.h>
|
||||
#endif
|
||||
|
||||
#ifndef USB_GET_DEVICEINFO
|
||||
# define USB_GET_DEVICEINFO 0
|
||||
# error The USB_GET_DEVICEINFO ioctl() value is not defined for your system.
|
||||
#endif
|
||||
|
||||
int open_usb_device(int vid, int pid)
|
||||
{
|
||||
int r, fd;
|
||||
|
|
|
@ -14,9 +14,12 @@ LUFA_PATH := ../../LUFA/
|
|||
CPPCHECK_EXCLUDES := FATFs/ \
|
||||
PetiteFATFs/ \
|
||||
uip/
|
||||
|
||||
CPPCHECK_INCLUDES := $(patsubst %/,%,$(LUFA_PATH))/CodeTemplates/ \
|
||||
$(patsubst %/,%,$(LUFA_PATH))/../Projects/AVRISP-MKII/
|
||||
|
||||
CPPCHECK_FLAGS := -U TEMPLATE_FUNC_NAME
|
||||
|
||||
SRC := $(patsubst %/,%,$(LUFA_PATH))/..
|
||||
|
||||
all: begin cppcheck end
|
||||
|
|
Loading…
Reference in New Issue