modify XiUOS DIR : (1.add plc_demo in APP_Framework/control_app; 2.add industrial_network、industrial_fieldbus and industrial_wlan; 3.add XiZi_AIoT and modify XiZi as XiZi_IIoT.)

This commit is contained in:
Liu_Weichao
2022-09-27 20:39:52 +08:00
parent dbca22a1a6
commit e14fa6ff8e
5009 changed files with 1019 additions and 3084 deletions
+68
View File
@@ -0,0 +1,68 @@
SRC_DIR :=
SRC_FILES += bus.c
ifeq ($(CONFIG_KERNEL_DEVICE),y)
SRC_FILES += device.c
endif
ifeq ($(CONFIG_RESOURCES_CAN),y)
SRC_DIR += can
endif
ifeq ($(CONFIG_RESOURCES_I2C),y)
SRC_DIR += i2c
endif
ifeq ($(CONFIG_RESOURCES_LCD),y)
SRC_DIR += lcd
endif
ifeq ($(CONFIG_RESOURCES_PIN),y)
SRC_DIR += pin
endif
ifeq ($(CONFIG_RESOURCES_RTC),y)
SRC_DIR += rtc
endif
ifeq ($(CONFIG_RESOURCES_SDIO),y)
SRC_DIR += sdio
endif
ifeq ($(CONFIG_RESOURCES_SERIAL),y)
SRC_DIR += serial
endif
ifeq ($(CONFIG_RESOURCES_SPI),y)
SRC_DIR += spi
endif
ifeq ($(CONFIG_RESOURCES_HWTIMER),y)
SRC_DIR += timer
endif
ifeq ($(CONFIG_RESOURCES_TOUCH),y)
SRC_DIR += touch
endif
ifeq ($(CONFIG_RESOURCES_USB),y)
SRC_DIR += usb
endif
ifeq ($(CONFIG_RESOURCES_LWIP),y)
SRC_DIR += ethernet
endif
ifeq ($(CONFIG_RESOURCES_WDT),y)
SRC_DIR += watchdog
endif
ifeq ($(CONFIG_RESOURCES_ADC),y)
SRC_DIR += adc
endif
ifeq ($(CONFIG_RESOURCES_DAC),y)
SRC_DIR += dac
endif
include $(KERNEL_ROOT)/compiler.mk