Beispiel #1
0
 /**
  * Change RTS line state. Set "true" for switching ON and "false" for switching OFF RTS line
  *
  * @return If the operation is successfully completed, the method returns true, otherwise false
  * @throws SerialPortException
  */
 public boolean setRTS(boolean enabled) throws SerialPortException {
   checkPortOpened("setRTS()");
   return serialInterface.setRTS(portHandle, enabled);
 }