|
||||||||||
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 | |
---|---|
abstract void |
ModbusProtocolDevice.configureConnection(org.osgi.service.io.ConnectionFactory connFactory,
Properties connectionConfig)
configure access to the physical device. |
void |
Modbus.configureConnection(org.osgi.service.io.ConnectionFactory connFactory,
Properties connectionConfig)
two connection types are available, PROTOCOL_CONNECTION_TYPE_SERIAL and PROTOCOL_CONNECTION_TYPE_ETHER_TCP. |
void |
ModbusProtocolDevice.configureDataMap(Properties dataConfig)
configure addressing schemes between the physical device and the client presentation of the data. |
void |
Modbus.configureDataMap(Properties dataConfig)
use of this method is optional, Modbus initializes with a default DataMap. |
abstract void |
ModbusProtocolDevice.configureProtocol(Properties protocolConfig)
any protocol specific configuration elements would be configured here. |
void |
Modbus.configureProtocol(Properties protocolConfig)
modbus protocol configuration. |
abstract void |
ModbusProtocolDevice.connect()
attempt to connect to the field device using the provided configuration. |
void |
Modbus.connect()
|
abstract String |
ModbusProtocolDevice.getDataType(int dataAddress)
get the primitive data type for the selected address. |
String |
Modbus.getDataType(int dataAddress)
|
abstract int |
ModbusProtocolDevice.getEndOfRange(int dataAddress)
gets the last address in a contiguous block of the same type data. |
int |
Modbus.getEndOfRange(int dataAddress)
|
ModbusProtocolDevice |
ModbusProtocolDeviceAcquisitionService.getProtocolDevice(String protocol)
Gets the desired protocol interface if available. |
ModbusProtocolDevice |
ModbusProtocolDeviceAcquisitionImpl.getProtocolDevice(String protocol)
|
ModbusProtocolDevice |
ModbusProtocolDeviceAcquisitionService.getProtocolDevice(String protocol,
Properties configureProtocol,
Properties configureConnection,
Properties configureDataMap)
Gets the desired protocol interface if available and configures the interface. |
ModbusProtocolDevice |
ModbusProtocolDeviceAcquisitionImpl.getProtocolDevice(String protocol,
Properties configureProtocol,
Properties configureConnection,
Properties configureDataMap)
|
abstract int |
ModbusProtocolDevice.getStartOfRange(int dataAddress)
gets the first address in a contiguous block of the same type data. |
int |
Modbus.getStartOfRange(int dataAddress)
|
boolean[] |
ModbusProtocolDevice.readBooleans(int dataAddress,
int count)
read 1 or more boolean points from the attached field device. |
boolean[] |
Modbus.readBooleans(int dataAddress,
int count)
|
byte[] |
ModbusProtocolDevice.readBytes(int dataAddress,
int count)
read 1 or more byte points from the attached field device. |
char[] |
ModbusProtocolDevice.readChars(int dataAddress,
int count)
read 1 or more char points from the attached field device. |
double[] |
ModbusProtocolDevice.readDoubles(int dataAddress,
int count)
read 1 or more double points from the attached field device. |
float[] |
ModbusProtocolDevice.readFloats(int dataAddress,
int count)
read 1 or more float points from the attached field device. |
float[] |
Modbus.readFloats(int dataAddress,
int count)
|
int[] |
ModbusProtocolDevice.readInts(int dataAddress,
int count)
read 1 or more int points from the attached field device. |
int[] |
Modbus.readInts(int dataAddress,
int count)
|
long[] |
ModbusProtocolDevice.readLongs(int dataAddress,
int count)
read 1 or more long points from the attached field device. |
Object |
ModbusProtocolDevice.readObject(int dataAddress)
read a single object from the address. |
short[] |
ModbusProtocolDevice.readShorts(int dataAddress,
int count)
read 1 or more short points from the attached field device. |
short[] |
Modbus.readShorts(int dataAddress,
int count)
|
long[] |
ModbusProtocolDevice.readUnsignedInts(int dataAddress,
int count)
read 1 or more unsigned int points from the attached field device. |
long[] |
Modbus.readUnsignedInts(int dataAddress,
int count)
|
int[] |
ModbusProtocolDevice.readUnsignedShorts(int dataAddress,
int count)
read 1 or more unsigned short points from the attached field device. |
int[] |
Modbus.readUnsignedShorts(int dataAddress,
int count)
|
void |
ModbusProtocolDevice.writeBooleans(int dataAddress,
boolean[] data)
write 1 or more boolean values to the attached field device. |
void |
Modbus.writeBooleans(int dataAddress,
boolean[] data)
|
void |
ModbusProtocolDevice.writeBytes(int dataAddress,
byte[] data)
write 1 or more byte values to the attached field device. |
void |
ModbusProtocolDevice.writeChars(int dataAddress,
char[] data)
write 1 or more char values to the attached field device. |
void |
ModbusProtocolDevice.writeDoubles(int dataAddress,
double[] data)
write 1 or more double values to the attached field device. |
void |
ModbusProtocolDevice.writeFloats(int dataAddress,
float[] data)
write 1 or more float values to the attached field device. |
void |
Modbus.writeFloats(int dataAddress,
float[] data)
|
void |
ModbusProtocolDevice.writeInts(int dataAddress,
int[] data)
write 1 or more int values to the attached field device. |
void |
Modbus.writeInts(int dataAddress,
int[] data)
|
void |
ModbusProtocolDevice.writeLongs(int dataAddress,
long[] data)
write 1 or more long values to the attached field device. |
void |
ModbusProtocolDevice.writeObject(int dataAddress,
Object data)
write a single object to the address. |
void |
ModbusProtocolDevice.writeShorts(int dataAddress,
short[] data)
write 1 or more short values to the attached field device. |
void |
Modbus.writeShorts(int dataAddress,
short[] data)
|
void |
ModbusProtocolDevice.writeUnsignedInts(int dataAddress,
long[] data)
write 1 or more unsigned int values to the attached field device. |
void |
Modbus.writeUnsignedInts(int dataAddress,
long[] data)
|
void |
ModbusProtocolDevice.writeUnsignedShorts(int dataAddress,
int[] data)
write 1 or more unsigned short values to the attached field device. |
void |
Modbus.writeUnsignedShorts(int dataAddress,
int[] data)
|
Constructors in com.eurotech.framework.protocol.modbus that throw ModbusProtocolException | |
---|---|
ModbusDataMap(int startAddress,
int count,
String dataOrder,
String dataFormation,
int modbusDataOffset,
int modbusReadCommand)
this class must be constructed with all parameters. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |