update makefile to build with ohci host

update ses project for lpc1769 with rtt
This commit is contained in:
hathach
2020-05-22 20:57:52 +07:00
parent f308990ab5
commit 4c01099a3d
3 changed files with 22 additions and 10 deletions
+4 -2
View File
@@ -9,15 +9,17 @@ INC += \
EXAMPLE_SOURCE += $(wildcard src/*.c)
SRC_C += $(addprefix $(CURRENT_PATH)/, $(EXAMPLE_SOURCE))
CFLAGS += -Wno-error=cast-align
# TinyUSB Host Stack source
SRC_C += \
src/host/usbh.c \
src/host/hub.c \
src/host/ehci/ehci.c \
src/host/ehci/ehci.c \
src/host/ohci/ohci.c \
src/class/cdc/cdc_host.c \
src/class/msc/msc_host.c \
src/portable/nxp/lpc18_43/hcd_lpc18_43.c
src/portable/nxp/lpc18_43/hcd_lpc18_43.c \
src/portable/nxp/lpc17_40/hcd_lpc17_40.c
include ../../rules.mk