#include "..\lib\module1.h" int VcomCmdModbus(TCPREADDATA *p) { /* VCOM3002 or later will call this function for port 502. when socket from TCP PORT 502 will call this function. user can get the following message: p->ReadUartChar : the buffer store the command data. p->Length : the command data length. p->Socket : the socket number that receive the command, that is when the user function want return message to the client, just use the socket to send data. use: VcomSendSocket(p->Socket,pdata,datalength); */ /* here just send back the command come from port 502. */ VcomSendSocket(p->Socket,p->ReadUartChar,p->Length); return 1; /* any value will be accept */ }