上一页 | 下一页 |
注意:最大接收和发送的字符长度为1024。
int GC_Eth_Open(int ip, int port)
ip | 如配置127.0.0.1 ip_addr = 127 << 24; ip_addr += 0 << 16; ip_addr += 0 << 8; ip_addr += 1 << 0; |
port | 端口号 |
返回值 | =0打开失败;>0句柄 |
int GC_Eth_Close(int handle)
handle | 打开时返回的句柄 |
返回值 | >=0关闭成功 <0关闭失败 |
int GC_Eth_Send(int handle, char *buffer, int len)
handle | 打开时返回的句柄 |
buffer | 发送缓冲区 |
len | 待发送的字节数,最大1024字节 |
返回值 | 成功发送的字节数 |
int GC_Eth_Rev(int handle, char *buffer, int len)
handle | 打开时返回的句柄 |
buffer | 接收缓冲区 |
len | 待接收的字节数,最大1024字节 |
返回值 | 成功接收的字节数 |
int GC_Udp_Open(int ip, int port)
ip | 如配置127.0.0.1 ip_addr = 127 << 24; ip_addr += 0 << 16; ip_addr += 0 << 8; ip_addr += 1 << 0; |
port | 端口号 |
返回值 | =0打开失败;>0句柄 |
int GC_Udp_Close(int handle)
handle | 打开时返回的句柄 |
返回值 | >=0关闭成功 <0关闭失败 |
int GC_Udp_Send(int handle, char *buffer, int len)
handle | 打开时返回的句柄 |
buffer | 发送缓冲区 |
len | 待发送的字节数,最大1024字节 |
返回值 | 成功发送的字节数 |
int GC_Udp_Rev(int handle, char *buffer, int len)
handle | 打开时返回的句柄 |
buffer | 接收缓冲区 |
len | 待接收的字节数,最大1024字节 |
返回值 | 成功接收的字节数 |
int GC_Eth_MC_Write(int handle, int sl_elem, int elem_len, int proh_elem)
handle | 1.1返回的句柄 |
sl_elem | 三菱元件类型以及起始例如:D123 支持元件种类: 'M','B','L','F','S','D','R','W' |
elem_len | 元件数量,最大256个 |
proh_elem | ProU元件类型以及起始例如:D123
'M':M元件 |
返回值 | >0 成功 |
int GC_Eth_MC_Read(int handle, int sl_elem, int elem_len, int proh_elem)
handle | 1.1返回的句柄 |
sl_elem | 三菱元件类型以及起始例如:M123 支持元件种类: 'M','B','L','F','S','D','R','W' |
elem_len | 元件数量,最大256个 |
proh_elem | ProU元件类型以及起始例如:M123 'M':M元件 |
返回值 |
上一页 | 下一页 |