|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use ModbusProtocolException | |
---|---|
com.eurotech.framework.protocol.modbus |
Uses of ModbusProtocolException in com.eurotech.framework.protocol.modbus |
---|
Methods in com.eurotech.framework.protocol.modbus that throw ModbusProtocolException | |
---|---|
void |
ModbusProtocolDevice.configureConnection(Properties connectionConfig)
two connection types are available, PROTOCOL_CONNECTION_TYPE_SERIAL (SERIAL MODE 232 or 485) and PROTOCOL_CONNECTION_TYPE_ETHER_TCP. |
void |
ModbusProtocolDeviceService.configureConnection(Properties connectionConfig)
Configure access to the physical device. |
void |
ModbusProtocolDevice.configureProtocol(Properties protocolConfig)
modbus protocol configuration. |
void |
ModbusProtocolDeviceService.configureProtocol(Properties protocolConfig)
Required properties for modbus protocol configuration. |
void |
ModbusProtocolDevice.connect()
|
void |
ModbusProtocolDeviceService.connect()
attempt to connect to the field device using the provided configuration. |
ModbusCommEvent |
ModbusProtocolDevice.getCommEventCounter()
|
ModbusCommEvent |
ModbusProtocolDeviceService.getCommEventCounter()
Modbus function 11 (0x0B) Get a status word and an event count from the device. Return values in a ModbusCommEvent. |
ModbusCommEvent |
ModbusProtocolDevice.getCommEventLog()
|
ModbusCommEvent |
ModbusProtocolDeviceService.getCommEventLog()
Modbus function 12 (0x0C) Get a status word, an event count, a message count and a list of event bytes from the device. Return values in a ModbusCommEvent. |
boolean[] |
ModbusProtocolDevice.readCoils(int dataAddress,
int count)
|
boolean[] |
ModbusProtocolDeviceService.readCoils(int dataAddress,
int count)
Modbus function 01 Read 1 to 2000 contiguous status of coils from the attached field device. |
boolean[] |
ModbusProtocolDevice.readDiscreteInputs(int dataAddress,
int count)
|
boolean[] |
ModbusProtocolDeviceService.readDiscreteInputs(int dataAddress,
int count)
Modbus function 02 Read 1 to 2000 contiguous status of discrete inputs from the attached field device. |
boolean[] |
ModbusProtocolDevice.readExceptionStatus()
|
boolean[] |
ModbusProtocolDeviceService.readExceptionStatus()
Modbus function 07 read the content of 8 Exception Status outputs in the field device. |
int[] |
ModbusProtocolDevice.readHoldingRegisters(int dataAddress,
int count)
|
int[] |
ModbusProtocolDeviceService.readHoldingRegisters(int dataAddress,
int count)
Modbus function 03 Read contents of 1 to 125 contiguous block of holding registers from the attached field device. |
int[] |
ModbusProtocolDevice.readInputRegisters(int dataAddress,
int count)
|
int[] |
ModbusProtocolDeviceService.readInputRegisters(int dataAddress,
int count)
Modbus function 04 Read contents of 1 to 125 contiguous block of input registers from the attached field device. |
void |
ModbusProtocolDevice.writeMultipleCoils(int dataAddress,
boolean[] data)
|
void |
ModbusProtocolDeviceService.writeMultipleCoils(int dataAddress,
boolean[] data)
Modbus function 15 (0x0F) write multiple coils in a sequence of coils to either ON or OFF in the attached field device. |
void |
ModbusProtocolDevice.writeMultipleRegister(int dataAddress,
int[] data)
|
void |
ModbusProtocolDeviceService.writeMultipleRegister(int dataAddress,
int[] data)
Modbus function 16 (0x10) write a block of contiguous registers (1 to 123) in the attached field device. |
void |
ModbusProtocolDevice.writeSingleCoil(int dataAddress,
boolean data)
|
void |
ModbusProtocolDeviceService.writeSingleCoil(int dataAddress,
boolean data)
Modbus function 05 write a single output to either ON or OFF in the attached field device. |
void |
ModbusProtocolDevice.writeSingleRegister(int dataAddress,
int data)
|
void |
ModbusProtocolDeviceService.writeSingleRegister(int dataAddress,
int data)
Modbus function 06 write a single holding register in the attached field device. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |