本文整理汇总了Java中gnu.io.SerialPort.PARITY_NONE属性的典型用法代码示例。如果您正苦于以下问题:Java SerialPort.PARITY_NONE属性的具体用法?Java SerialPort.PARITY_NONE怎么用?Java SerialPort.PARITY_NONE使用的例子?那么恭喜您, 这里精选的属性代码示例或许可以为您提供帮助。您也可以进一步了解该属性所在类gnu.io.SerialPort
的用法示例。
在下文中一共展示了SerialPort.PARITY_NONE属性的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: setParity
/**
* Sets the parity schema from the given
* <tt>String</tt>.
*
* @param parity the new parity schema as <tt>String</tt>.
*/
public void setParity(String parity) throws IllegalArgumentException {
parity = parity.toLowerCase();
int intParity = SerialPort.PARITY_NONE;
if (parity.equals("none") || parity.equals("n")) {
intParity = SerialPort.PARITY_NONE;
} else if (parity.equals("even") || parity.equals("e")) {
intParity = SerialPort.PARITY_EVEN;
} else if (parity.equals("odd") || parity.equals("o")) {
intParity = SerialPort.PARITY_ODD;
} else {
throw new IllegalArgumentException(
"unknown parity string '" + parity + "'");
}
setParity(intParity);
}
示例2: setParity
/**
* Sets the parity schema from the given
* <tt>String</tt>.
*
* @param parity the new parity schema as <tt>String</tt>.
*/
public void setParity(String parity) throws IllegalArgumentException {
parity = parity.toLowerCase();
int intParity = SerialPort.PARITY_NONE;
if (parity.equals("none") || parity.equals("n")) {
intParity = SerialPort.PARITY_NONE;
} else if (parity.equals("even") || parity.equals("e")) {
intParity = SerialPort.PARITY_EVEN;
} else if (parity.equals("odd") || parity.equals("o")) {
intParity = SerialPort.PARITY_ODD;
} else {
throw new IllegalArgumentException("unknown parity string '" + parity + "'");
}
setParity(intParity);
}
示例3: StreamCommand
/**
* Creates a new instance for serial communication.
*
* @param listener receiving all messages/answers/errors asynchronously;
* there can only be one registered listener
* @param baudRate for the serial line
*
* @see #setBaudRate
*/
public StreamCommand(StreamCommandListener listener,int baudRate)
{
this.listener= listener;
this.baudRate= baudRate;
log.info("serial communication settings : "
+baudRate+" baud, 8 data- 1 stop-bit, no flow control");
dataBits= SerialPort.DATABITS_8;
stopBits= SerialPort.STOPBITS_1;
paritiyFlags= SerialPort.PARITY_NONE;
port= null;
is= null;
os= null;
synced= true;
currentCommand= null;
cmdPipe= new ArrayList<String>();
cmdWatchdog= null;
rtsWatchdog= null;
message= new StreamCommandMessage();
messageTimes= new ArrayList<Long>();
cmdsSent= 0;
cmdsTimeouts= 0;
}
示例4: SerialParameters
/**
* Constructs a new <tt>SerialParameters</tt> instance with
* default values: 9600 boud - 8N1 - ASCII.
*/
public SerialParameters() {
m_PortName = "";
m_BaudRate = 9600;
m_FlowControlIn = SerialPort.FLOWCONTROL_NONE;
m_FlowControlOut = SerialPort.FLOWCONTROL_NONE;
m_Databits = SerialPort.DATABITS_8;
m_Stopbits = SerialPort.STOPBITS_1;
m_Parity = SerialPort.PARITY_NONE;
m_Encoding = Modbus.DEFAULT_SERIAL_ENCODING;
m_ReceiveTimeout = 500; //5 secs
m_Echo = false;
}
示例5: getParityString
/**
* Returns the parity schema as <tt>String</tt>.
*
* @return the parity schema as <tt>String</tt>.
*/
public String getParityString() {
switch (m_Parity) {
case SerialPort.PARITY_NONE:
return "none";
case SerialPort.PARITY_EVEN:
return "even";
case SerialPort.PARITY_ODD:
return "odd";
default:
return "none";
}
}
示例6: SerialParameters
/**
* Default constructer. Sets parameters to no port, 9600 baud, no flow control, 8 data bits, 1
* stop bit, no parity.
*/
public SerialParameters() {
this(
UI.EMPTY_STRING,
9600,
SerialPort.FLOWCONTROL_NONE,
SerialPort.FLOWCONTROL_NONE,
SerialPort.DATABITS_8,
SerialPort.STOPBITS_1,
SerialPort.PARITY_NONE);
}
示例7: getParityString
/**
* Gets parity setting as a <code>String</code>.
*
* @return Current parity setting.
*/
public String getParityString() {
switch (_parity) {
case SerialPort.PARITY_NONE:
return "None"; //$NON-NLS-1$
case SerialPort.PARITY_EVEN:
return "Even"; //$NON-NLS-1$
case SerialPort.PARITY_ODD:
return "Odd"; //$NON-NLS-1$
default:
return "None"; //$NON-NLS-1$
}
}
示例8: setParity
/**
* Sets parity setting.
*
* @param parity
* New parity setting.
*/
public void setParity(final String parity) {
if (parity.equals("None")) { //$NON-NLS-1$
this._parity = SerialPort.PARITY_NONE;
}
if (parity.equals("Even")) { //$NON-NLS-1$
this._parity = SerialPort.PARITY_EVEN;
}
if (parity.equals("Odd")) { //$NON-NLS-1$
this._parity = SerialPort.PARITY_ODD;
}
}
示例9: getPortParameters
@Override
public SerialParameters getPortParameters(final String portName) {
return new SerialParameters(
portName,
9600,
SerialPort.FLOWCONTROL_NONE,
SerialPort.FLOWCONTROL_NONE,
SerialPort.DATABITS_8,
SerialPort.STOPBITS_1,
SerialPort.PARITY_NONE);
}
示例10: getPortParameters
@Override
public SerialParameters getPortParameters(final String portName) {
final SerialParameters hac5PortParameters = new SerialParameters(
portName,
4800,
SerialPort.FLOWCONTROL_NONE,
SerialPort.FLOWCONTROL_NONE,
SerialPort.DATABITS_8,
SerialPort.STOPBITS_1,
SerialPort.PARITY_NONE);
return hac5PortParameters;
}
示例11: getPortParameters
@Override
public SerialParameters getPortParameters(String portName) {
SerialParameters portParameters = new SerialParameters(portName,
4800,
SerialPort.FLOWCONTROL_NONE,
SerialPort.FLOWCONTROL_NONE,
SerialPort.DATABITS_8,
SerialPort.STOPBITS_1,
SerialPort.PARITY_NONE);
return portParameters;
}
示例12: SerialParameters
/**
* Constructs a new <tt>SerialParameters</tt> instance with
* default values.
*/
public SerialParameters() {
m_PortName = "";
m_BaudRate = 9600;
m_FlowControlIn = SerialPort.FLOWCONTROL_NONE;
m_FlowControlOut = SerialPort.FLOWCONTROL_NONE;
m_Databits = SerialPort.DATABITS_8;
m_Stopbits = SerialPort.STOPBITS_1;
m_Parity = SerialPort.PARITY_NONE;
m_Encoding = Modbus.DEFAULT_SERIAL_ENCODING;
m_ReceiveTimeout = 500; //5 secs
m_Echo = false;
}
示例13: setParity
/**
* Sets the parity schema from the given
* <tt>String</tt>.
*
* @param parity the new parity schema as <tt>String</tt>.
*/
public void setParity(String parity) {
parity = parity.toLowerCase();
if (parity.equals("none")) {
m_Parity = SerialPort.PARITY_NONE;
}
if (parity.equals("even")) {
m_Parity = SerialPort.PARITY_EVEN;
}
if (parity.equals("odd")) {
m_Parity = SerialPort.PARITY_ODD;
}
}
示例14: getParity
public static int getParity(String sPortParity) {
switch (sPortParity) {
case "none":
return SerialPort.PARITY_NONE;
case "even":
return SerialPort.PARITY_EVEN;
case "odd":
return SerialPort.PARITY_ODD;
default:
return SerialPort.PARITY_NONE;
}
}
示例15: getParityString
/**
* Returns the parity schema as <tt>String</tt>.
*
* @return the parity schema as <tt>String</tt>.
*/
public String getParityString() {
switch (m_Parity) {
case SerialPort.PARITY_NONE:
return "none";
case SerialPort.PARITY_EVEN:
return "even";
case SerialPort.PARITY_ODD:
return "odd";
default:
return "none";
}
}