mirror of
https://github.com/openshwprojects/OpenBK7231T_App.git
synced 2026-02-05 02:05:43 +00:00
* Move delay us and wdt to hals, update workflow * rtl8720c initial * move uart to hal * rtl uart * obk adjustments * sdk adjustments, fix ota * add some features * fix some warnings * esp uart + tr6260/esp tcp_msl * add bl0937, adjust ota * enable artifacts merge * add forgotten ln882h delay * fix mqtt, pwm on boot * irq fix * fix wifi disconnect * update sdk, change lfs location and size * Update Makefile
17 lines
688 B
Makefile
17 lines
688 B
Makefile
# Component Makefile
|
|
#
|
|
## These include paths would be exported to project level
|
|
COMPONENT_ADD_INCLUDEDIRS += src/ src/httpserver/ src/cmnds/ src/logging/ src/hal/bl602/ src/mqtt/ src/cJSON src/base64 src/driver src/devicegroups src/bitmessage src/littlefs
|
|
|
|
## not be exported to project level
|
|
COMPONENT_PRIV_INCLUDEDIRS :=
|
|
|
|
|
|
## This component's src
|
|
COMPONENT_SRCS :=
|
|
|
|
COMPONENT_OBJS := $(patsubst %.c,%.o, $(COMPONENT_SRCS))
|
|
COMPONENT_OBJS := $(patsubst %.S,%.o, $(COMPONENT_OBJS))
|
|
|
|
COMPONENT_SRCDIRS := src/ src/jsmn src/httpserver/ src/cmnds/ src/logging/ src/hal/bl602/ src/mqtt/ src/i2c/ src/cJSON src/base64 src/driver src/devicegroups src/bitmessage src/littlefs src/hal/generic
|