├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── common.mk ├── config.mk ├── docs └── melsec_mc_bin协议api手册.md ├── makefile ├── mc_bin_test └── melsec_mc_net ├── error_handler.c ├── error_handler.h ├── main.c ├── makefile ├── melsec_helper.c ├── melsec_helper.h ├── melsec_mc_ascii.c ├── melsec_mc_ascii.h ├── melsec_mc_bin.c ├── melsec_mc_bin.h ├── melsec_mc_bin_batch.c ├── melsec_mc_bin_batch.h ├── melsec_mc_bin_private.h ├── melsec_mc_comm.c ├── melsec_mc_comm.h ├── melsec_mc_net.filters ├── melsec_mc_net.sln ├── melsec_mc_net.vcxproj ├── network_init.c ├── network_init.h ├── socket.c ├── socket.h ├── thread_safe.c ├── thread_safe.h ├── typedef.h ├── utill.c └── utill.h /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-pms/melsec_mc_net/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-pms/melsec_mc_net/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-pms/melsec_mc_net/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-pms/melsec_mc_net/HEAD/README.md -------------------------------------------------------------------------------- /common.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-pms/melsec_mc_net/HEAD/common.mk -------------------------------------------------------------------------------- /config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-pms/melsec_mc_net/HEAD/config.mk -------------------------------------------------------------------------------- /docs/melsec_mc_bin协议api手册.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-pms/melsec_mc_net/HEAD/docs/melsec_mc_bin协议api手册.md -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-pms/melsec_mc_net/HEAD/makefile -------------------------------------------------------------------------------- /mc_bin_test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-pms/melsec_mc_net/HEAD/mc_bin_test -------------------------------------------------------------------------------- /melsec_mc_net/error_handler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-pms/melsec_mc_net/HEAD/melsec_mc_net/error_handler.c -------------------------------------------------------------------------------- /melsec_mc_net/error_handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-pms/melsec_mc_net/HEAD/melsec_mc_net/error_handler.h -------------------------------------------------------------------------------- /melsec_mc_net/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-pms/melsec_mc_net/HEAD/melsec_mc_net/main.c -------------------------------------------------------------------------------- /melsec_mc_net/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-pms/melsec_mc_net/HEAD/melsec_mc_net/makefile -------------------------------------------------------------------------------- /melsec_mc_net/melsec_helper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-pms/melsec_mc_net/HEAD/melsec_mc_net/melsec_helper.c -------------------------------------------------------------------------------- /melsec_mc_net/melsec_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-pms/melsec_mc_net/HEAD/melsec_mc_net/melsec_helper.h -------------------------------------------------------------------------------- /melsec_mc_net/melsec_mc_ascii.c: -------------------------------------------------------------------------------- 1 | #include "melsec_mc_ascii.h" -------------------------------------------------------------------------------- /melsec_mc_net/melsec_mc_ascii.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-pms/melsec_mc_net/HEAD/melsec_mc_net/melsec_mc_ascii.h -------------------------------------------------------------------------------- /melsec_mc_net/melsec_mc_bin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-pms/melsec_mc_net/HEAD/melsec_mc_net/melsec_mc_bin.c -------------------------------------------------------------------------------- /melsec_mc_net/melsec_mc_bin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-pms/melsec_mc_net/HEAD/melsec_mc_net/melsec_mc_bin.h -------------------------------------------------------------------------------- /melsec_mc_net/melsec_mc_bin_batch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-pms/melsec_mc_net/HEAD/melsec_mc_net/melsec_mc_bin_batch.c -------------------------------------------------------------------------------- /melsec_mc_net/melsec_mc_bin_batch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-pms/melsec_mc_net/HEAD/melsec_mc_net/melsec_mc_bin_batch.h -------------------------------------------------------------------------------- /melsec_mc_net/melsec_mc_bin_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-pms/melsec_mc_net/HEAD/melsec_mc_net/melsec_mc_bin_private.h -------------------------------------------------------------------------------- /melsec_mc_net/melsec_mc_comm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-pms/melsec_mc_net/HEAD/melsec_mc_net/melsec_mc_comm.c -------------------------------------------------------------------------------- /melsec_mc_net/melsec_mc_comm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-pms/melsec_mc_net/HEAD/melsec_mc_net/melsec_mc_comm.h -------------------------------------------------------------------------------- /melsec_mc_net/melsec_mc_net.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-pms/melsec_mc_net/HEAD/melsec_mc_net/melsec_mc_net.filters -------------------------------------------------------------------------------- /melsec_mc_net/melsec_mc_net.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-pms/melsec_mc_net/HEAD/melsec_mc_net/melsec_mc_net.sln -------------------------------------------------------------------------------- /melsec_mc_net/melsec_mc_net.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-pms/melsec_mc_net/HEAD/melsec_mc_net/melsec_mc_net.vcxproj -------------------------------------------------------------------------------- /melsec_mc_net/network_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-pms/melsec_mc_net/HEAD/melsec_mc_net/network_init.c -------------------------------------------------------------------------------- /melsec_mc_net/network_init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-pms/melsec_mc_net/HEAD/melsec_mc_net/network_init.h -------------------------------------------------------------------------------- /melsec_mc_net/socket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-pms/melsec_mc_net/HEAD/melsec_mc_net/socket.c -------------------------------------------------------------------------------- /melsec_mc_net/socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-pms/melsec_mc_net/HEAD/melsec_mc_net/socket.h -------------------------------------------------------------------------------- /melsec_mc_net/thread_safe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-pms/melsec_mc_net/HEAD/melsec_mc_net/thread_safe.c -------------------------------------------------------------------------------- /melsec_mc_net/thread_safe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-pms/melsec_mc_net/HEAD/melsec_mc_net/thread_safe.h -------------------------------------------------------------------------------- /melsec_mc_net/typedef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-pms/melsec_mc_net/HEAD/melsec_mc_net/typedef.h -------------------------------------------------------------------------------- /melsec_mc_net/utill.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-pms/melsec_mc_net/HEAD/melsec_mc_net/utill.c -------------------------------------------------------------------------------- /melsec_mc_net/utill.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-pms/melsec_mc_net/HEAD/melsec_mc_net/utill.h --------------------------------------------------------------------------------