modbus
Lzz-111
这个作者很懒,什么都没留下…
展开
-
Modubus TCP Client
Modubus TCP Client #include <stdio.h> #include <unistd.h> #include <string.h> #include <stdlib.h> #include <errno.h> #include <modbus.h> #define LOOP 1 #define SERVER_ID 17 #defind ADDRESS_START 0 #definf ADDR原创 2021-06-07 21:55:28 · 523 阅读 · 3 评论 -
Modbus TCP Server
#include <stdio.h> #include <unistd.h> #include <stdlib.h> #include <errno.h> #include "modbus.h" int main() { int server_socket = -1; modbus_t *ctx; modbus_mapping_t *mb_mapping; //创建一个TCP ctx = modbus_new_tcp(NULL,1502); //原创 2021-06-09 21:08:16 · 640 阅读 · 2 评论