Back to FabImage Library website
You are here: Start » Function Reference » System » Modbus TCP » ModbusTCP_ReadMultipleRegisters_AsByteBuffer
Header: | STD.h |
---|---|
Namespace: | fil |
Module: | FoundationLite |
Function Code 03. Reads the contents of a contiguous block of holding registers in a remote device
Syntax
void fil::ModbusTCP_ReadMultipleRegisters_AsByteBuffer ( const fil::SocketId& inSocket, const ftl::Optional<int>& inTimeout, int inUnitID, int inStartingAddress, int inCount, fil::ByteBuffer& outData )
Parameters
Name | Type | Range | Default | Description | |
---|---|---|---|---|---|
![]() |
inSocket | const SocketId& | Connected socket ID on port 502. | ||
![]() |
inTimeout | const Optional<int>& | 10 - ![]() |
NIL | Timeout in milliseconds, block if not specified. |
![]() |
inUnitID | int | 0 - 255 | 1 | Default is 1. |
![]() |
inStartingAddress | int | 0 - 65535 | The address of the first holding register. | |
![]() |
inCount | int | 1 - 125 | 1 | Number of registers to read. Each register is 2 Bytes in size. |
![]() |
outData | ByteBuffer& | Received register values. |
See Also
- ModbusTCP_ReadMultipleIntegerRegisters – Function Code 03. Reads the contents of a contiguous block of holding registers in a remote device
- ModbusTCP_ReadMultipleRealRegisters – Function Code 03. Reads the contents of a contiguous block of holding registers in a remote device
- ModbusTCP_WriteSingleRegister – Function Code 06. Writes a single holding register in a remote device
- ModbusTCP_WriteMultipleRegisters_AsByteBuffer – Function Code 16. Writes a block of contiguous registers (1 to 123 registers) in a remote device
- ModbusTCP_WriteMultipleIntegerRegisters – Function Code 16. Writes a block of contiguous registers (1 to 123 registers) in a remote device
- ModbusTCP_WriteMultipleRealRegisters – Function Code 16. Writes a block of contiguous registers (1 to 123 registers) in a remote device