forked from xuos/xiuos
30 lines
775 B
Plaintext
Executable File
30 lines
775 B
Plaintext
Executable File
menuconfig SUPPORT_CONTROL_FRAMEWORK
|
|
bool "support control framework"
|
|
default n
|
|
select TRANSFORM_LAYER_ATTRIUBUTE
|
|
select BSP_USING_LWIP
|
|
select BSP_USING_SDIO
|
|
select MOUNT_SDCARD_FS
|
|
select LIB_USING_CJSON
|
|
|
|
if SUPPORT_CONTROL_FRAMEWORK
|
|
config CONTROL_RECIPE_FILE
|
|
string "control framework recipe file name"
|
|
default "test_recipe.json"
|
|
|
|
menuconfig CONTROL_IPC_PROTOCOL
|
|
bool "Using ipc protocol"
|
|
default n
|
|
if CONTROL_IPC_PROTOCOL
|
|
source "$APP_DIR/Framework/control/ipc_protocol/Kconfig"
|
|
endif
|
|
|
|
menuconfig CONTROL_PLC_PROTOCOL
|
|
bool "Using plc protocol"
|
|
default n
|
|
if CONTROL_PLC_PROTOCOL
|
|
source "$APP_DIR/Framework/control/plc_protocol/Kconfig"
|
|
endif
|
|
|
|
endif
|