实例介绍
电力标准iec 60870库文件。可学习使用。包含电力101和104协议。有示例,可在Linux系统中使用。
【实例截图】
【核心代码】
16359647680386376032.tgz
└── lib60870-2.0.0
├── CHANGELOG
├── COPYING
├── lib60870-C
│ ├── CMakeLists.txt
│ ├── config
│ │ └── lib60870_config.h
│ ├── dependencies
│ │ └── README
│ ├── doxydoc
│ │ └── mz-automation.ico
│ ├── Doxyfile
│ ├── examples
│ │ ├── CMakeLists.txt
│ │ ├── cs101_master_balanced
│ │ │ ├── CMakeLists.txt
│ │ │ ├── Makefile
│ │ │ └── master_example.c
│ │ ├── cs101_master_unbalanced
│ │ │ ├── CMakeLists.txt
│ │ │ ├── Makefile
│ │ │ └── master_example.c
│ │ ├── cs101_slave
│ │ │ ├── CMakeLists.txt
│ │ │ ├── Makefile
│ │ │ └── slave_example.c
│ │ ├── cs104_client
│ │ │ ├── CMakeLists.txt
│ │ │ ├── Makefile
│ │ │ └── simple_client.c
│ │ ├── cs104_server
│ │ │ ├── CMakeLists.txt
│ │ │ ├── Makefile
│ │ │ └── simple_server.c
│ │ ├── multi_client_server
│ │ │ ├── CMakeLists.txt
│ │ │ ├── Makefile
│ │ │ └── multi_client_server.c
│ │ ├── tls_client
│ │ │ ├── client1.cer
│ │ │ ├── client1-key.pem
│ │ │ ├── CMakeLists.txt
│ │ │ ├── Makefile
│ │ │ ├── root.cer
│ │ │ └── tls_client.c
│ │ └── tls_server
│ │ ├── client1.cer
│ │ ├── client2.cer
│ │ ├── CMakeLists.txt
│ │ ├── Makefile
│ │ ├── root.cer
│ │ ├── server.cer
│ │ ├── server-key.pem
│ │ └── tls_server.c
│ ├── make
│ │ ├── common_targets.mk
│ │ ├── stack_includes.mk
│ │ └── target_system.mk
│ ├── Makefile
│ ├── src
│ │ ├── CMakeLists.txt
│ │ ├── common
│ │ │ ├── inc
│ │ │ │ ├── lib_memory.h
│ │ │ │ └── linked_list.h
│ │ │ ├── lib_memory.c
│ │ │ └── linked_list.c
│ │ ├── hal
│ │ │ ├── inc
│ │ │ │ ├── hal_filesystem.h
│ │ │ │ ├── hal_serial.h
│ │ │ │ ├── hal_socket.h
│ │ │ │ ├── hal_thread.h
│ │ │ │ ├── hal_time.h
│ │ │ │ └── platform_endian.h
│ │ │ ├── serial
│ │ │ │ ├── linux
│ │ │ │ │ └── serial_port_linux.c
│ │ │ │ └── win32
│ │ │ │ └── serial_port_win32.c
│ │ │ ├── socket
│ │ │ │ ├── bsd
│ │ │ │ │ └── socket_bsd.c
│ │ │ │ ├── linux
│ │ │ │ │ └── socket_linux.c
│ │ │ │ └── win32
│ │ │ │ └── socket_win32.c
│ │ │ ├── thread
│ │ │ │ ├── bsd
│ │ │ │ │ └── thread_bsd.c
│ │ │ │ ├── linux
│ │ │ │ │ └── thread_linux.c
│ │ │ │ └── win32
│ │ │ │ └── thread_win32.c
│ │ │ └── time
│ │ │ ├── unix
│ │ │ │ └── time.c
│ │ │ └── win32
│ │ │ └── time.c
│ │ ├── iec60870
│ │ │ ├── apl
│ │ │ │ └── cpXXtime2a.c
│ │ │ ├── cs101
│ │ │ │ ├── cs101_asdu.c
│ │ │ │ ├── cs101_bcr.c
│ │ │ │ ├── cs101_information_objects.c
│ │ │ │ ├── cs101_master.c
│ │ │ │ ├── cs101_master_connection.c
│ │ │ │ ├── cs101_queue.c
│ │ │ │ └── cs101_slave.c
│ │ │ ├── cs104
│ │ │ │ ├── cs104_connection.c
│ │ │ │ ├── cs104_frame.c
│ │ │ │ └── cs104_slave.c
│ │ │ ├── frame.c
│ │ │ ├── lib60870_common.c
│ │ │ └── link_layer
│ │ │ ├── buffer_frame.c
│ │ │ ├── link_layer.c
│ │ │ └── serial_transceiver_ft_1_2.c
│ │ ├── inc
│ │ │ ├── api
│ │ │ │ ├── cs101_information_objects.h
│ │ │ │ ├── cs101_master.h
│ │ │ │ ├── cs101_slave.h
│ │ │ │ ├── cs104_connection.h
│ │ │ │ ├── cs104_slave.h
│ │ │ │ ├── iec60870_common.h
│ │ │ │ ├── iec60870_master.h
│ │ │ │ ├── iec60870_slave.h
│ │ │ │ └── link_layer_parameters.h
│ │ │ └── internal
│ │ │ ├── apl_types_internal.h
│ │ │ ├── buffer_frame.h
│ │ │ ├── cs101_asdu_internal.h
│ │ │ ├── cs101_queue.h
│ │ │ ├── cs104_frame.h
│ │ │ ├── frame.h
│ │ │ ├── information_objects_internal.h
│ │ │ ├── lib60870_internal.h
│ │ │ ├── link_layer.h
│ │ │ ├── link_layer_private.h
│ │ │ ├── platform_endian.h
│ │ │ └── serial_transceiver_ft_1_2.h
│ │ ├── tls
│ │ │ ├── mbedtls
│ │ │ │ ├── mbedtls_config.h
│ │ │ │ └── tls_mbedtls.c
│ │ │ └── tls_api.h
│ │ └── version.rc.in
│ └── tests
│ ├── all_tests.c
│ ├── CMakeLists.txt
│ └── unity
│ ├── unity.c
│ ├── unity.h
│ └── unity_internals.h
├── README.md
└── user_guide.adoc
46 directories, 113 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论