feat add melsec protocol for control framework

This commit is contained in:
Liu_Weichao
2022-11-29 17:11:51 +08:00
parent e5bf0cee41
commit 0b49dd1a3c
6 changed files with 806 additions and 3 deletions

View File

@@ -1,15 +1,27 @@
config CONTROL_PROTOCOL_FINS
bool "Using fins control protocol"
default n
if CONTROL_PROTOCOL_FINS
source "$APP_DIR/Framework/control/plc_protocol/fins/Kconfig"
endif
config CONTROL_PROTOCOL_MELSEC
bool "Using melsec control protocol"
default n
if CONTROL_PROTOCOL_MELSEC
source "$APP_DIR/Framework/control/plc_protocol/melsec/Kconfig"
endif
config CONTROL_PROTOCOL_OPCUA
bool "Using opcua control protocol"
default n
if CONTROL_PROTOCOL_OPCUA
source "$APP_DIR/Framework/control/plc_protocol/opcua/Kconfig"
endif
config CONTROL_PROTOCOL_S7
bool "Using s7 control protocol"
default n
if CONTROL_PROTOCOL_S7
source "$APP_DIR/Framework/control/plc_protocol/s7/Kconfig"
endif