6 #ifndef __DSAMPORT_IDL__
7 #define __DSAMPORT_IDL__
9 #include <UserEvent.idl>
17 constant
int SUCCESS = 0;
20 constant
int SETTINGS_INVALID = 1;
21 constant
int SSH_DPA_PORT_INVALID = 2;
22 constant
int SSH_DPA_PORT_IN_USE = 3;
DSAM port interface.
Definition: DsamPort.idl:14
Info getInfo()
Get current port info.
Settings getSettings()
Get current port settings.
int getTtyUsbNumber()
Get the number of the ttyUSB device.
State
Port state.
Definition: DsamPort.idl:46
@ STATE_AVAILABLE
no clients connected to port
Definition: DsamPort.idl:47
@ STATE_OCCUPIED
at least one client connected, more clients allowed
Definition: DsamPort.idl:48
int setSettings(in Settings settings)
Set port settings.
DeviceInterfaceType
Derial device interface type.
Definition: DsamPort.idl:25
@ DEV_IFTYPE_AUTO
auto detect
Definition: DsamPort.idl:26
@ DEV_IFTYPE_DTE
DTE (Data Terminal Equipment) device detected.
Definition: DsamPort.idl:27
FlowControl
Flow control type.
Definition: DsamPort.idl:39
@ FLOW_CTRL_HARDWARE
Hardware flow control.
Definition: DsamPort.idl:41
@ FLOW_CTRL_NONE
No flow control.
Definition: DsamPort.idl:40
Parity
Parity mode.
Definition: DsamPort.idl:32
@ PARITY_ODD
Odd parity (implies 7 data bits)
Definition: DsamPort.idl:34
@ PARITY_NONE
No parity (implies 8 data bits)
Definition: DsamPort.idl:33
void setState(in State state)
Set the state of the port.
Event that is send when the port info has changed.
Definition: DsamPort.idl:76
Info oldInfo
Old port info.
Definition: DsamPort.idl:77
string portName
current port name
Definition: DsamPort.idl:79
Info newInfo
New port info.
Definition: DsamPort.idl:78
Port info.
Definition: DsamPort.idl:53
boolean connected
true if serial device is connected
Definition: DsamPort.idl:56
State state
state of the port
Definition: DsamPort.idl:58
int dsamNumber
DSAM number (1-based)
Definition: DsamPort.idl:54
int portNumber
port number (1-based)
Definition: DsamPort.idl:55
DeviceInterfaceType devIfType
serial device interface type if connected is true
Definition: DsamPort.idl:57
Event that is send whenthe port settings have changed.
Definition: DsamPort.idl:83
int portNumber
port number
Definition: DsamPort.idl:85
Settings oldSettings
Old port settings.
Definition: DsamPort.idl:86
int dsamNumber
DSAM number.
Definition: DsamPort.idl:84
Settings newSettings
New port settings.
Definition: DsamPort.idl:87
Port settings.
Definition: DsamPort.idl:62
int breakDurationMs
Length of BREAK signal duration in milli seconds.
Definition: DsamPort.idl:69
int baudRate
Baud rate.
Definition: DsamPort.idl:65
int sshDpaPort
SSH DPA port number.
Definition: DsamPort.idl:71
FlowControl flowCtrl
Flow control type.
Definition: DsamPort.idl:68
boolean allowSharedAccess
Allow more than one user to connect to this port.
Definition: DsamPort.idl:72
DeviceInterfaceType devIfType
Port interface type (allows forcing the interface type)
Definition: DsamPort.idl:64
int stopBits
Number of stop bits (1 or 2)
Definition: DsamPort.idl:67
string name
Port name.
Definition: DsamPort.idl:63
boolean sshDpaPortEnabled
true if dedicated SSH DPA port is enabled
Definition: DsamPort.idl:70
Parity parity
Parity mode.
Definition: DsamPort.idl:66