Tagged Questions
2
votes
3answers
763 views
How to Reduce TCP delays caused by ARP flushes for MODBUS TCP
We have an application which is periodically sending TCP messages at a defined rate(Using MODBUS TCP). If a message is not received within a set period an alarm is raised. However every once in a ...
1
vote
1answer
79 views
Delimiting Application Protocol Frames using .Net's NetworkStream.Read/BeginRead
My question is more general to network programming, but because I'm trying to write a Modbus TCP server (slave), I will use it to illustrate my question.
In a Modbus TCP frame, the 5th and 6th byte ...
1
vote
2answers
88 views
Need to communicate with a box using Modbus over TCP/IP from my cloud-based server
So I don't have much experience with Modbus but my problem is essentially what's in the title. Would I need a controller that talks to the box and then reformat the message and pushes it to the ...
0
votes
2answers
117 views
MODBUS TCP answer convert to a float C++
I got a Problem. I'Ve got a MODBUS TCP answer, which is hex coded like this: 0 0 0 0 0 7 1 4 4 41 B8 66 64. For explanation: the first five zeroes are a specification of Modbus, the 7 are the numbers ...
0
votes
1answer
50 views
How the “OK” message looks like?
I have a device that sends data to a server.
Data
[ Client ] == > [ Server ]
After the validation on the server I want to return a message:
OK
[ Client ] < == [ ...