mqtt update

This commit is contained in:
huang
2023-07-13 10:56:20 +08:00
parent 7754a149a9
commit 455fd31c7f
10 changed files with 53 additions and 2 deletions
+2 -1
View File
@@ -1,4 +1,5 @@
include $(KERNEL_ROOT)/.config
ifeq ($(CONFIG_ADD_NUTTX_FETURES),y)
include $(APPDIR)/Make.defs
@@ -24,7 +25,7 @@ endif
ifeq ($(CONFIG_ADD_XIZI_FETURES),y)
SRC_FILES := test_shell.c
SRC_FILES += test_hash.c
ifeq ($(CONFIG_USER_TEST_ADC),y)
SRC_FILES += test_adc.c
endif
@@ -14,7 +14,7 @@ ifeq ($(CONFIG_ADD_XIZI_FETURES),y)
ifeq ($(CONFIG_RESOURCES_LWIP),y)
SRC_DIR += socket_demo
endif
SRC_DIR +=mqtt_demo
include $(KERNEL_ROOT)/compiler.mk
endif
@@ -0,0 +1,12 @@
ifeq ($(CONFIG_ADD_XIZI_FETURES),y)
SRC_FILES := lwip_mqtt_demo.c
include $(KERNEL_ROOT)/compiler.mk
endif
include $(KERNEL_ROOT)/.config
ifeq ($(CONFIG_ADD_NUTTX_FETURES),y)
include $(APPDIR)/Make.defs
CSRCS += lwip_mqtt_demo.c
include $(APPDIR)/Application.mk
endif