| Index: third_party/twisted_8_1/twisted/internet/serialport.py
|
| diff --git a/third_party/twisted_8_1/twisted/internet/serialport.py b/third_party/twisted_8_1/twisted/internet/serialport.py
|
| deleted file mode 100644
|
| index 6ac58ae0cea5e3a80e94a4cd6837dd7753731148..0000000000000000000000000000000000000000
|
| --- a/third_party/twisted_8_1/twisted/internet/serialport.py
|
| +++ /dev/null
|
| @@ -1,65 +0,0 @@
|
| -# Copyright (c) 2001-2004 Twisted Matrix Laboratories.
|
| -# See LICENSE for details.
|
| -
|
| -
|
| -"""
|
| -Serial Port Protocol
|
| -"""
|
| -
|
| -# system imports
|
| -import os, sys
|
| -
|
| -# all of them require pyserial at the moment, so check that first
|
| -import serial
|
| -from serial import PARITY_NONE, PARITY_EVEN, PARITY_ODD
|
| -from serial import STOPBITS_ONE, STOPBITS_TWO
|
| -from serial import FIVEBITS, SIXBITS, SEVENBITS, EIGHTBITS
|
| -
|
| -# common code for serial ports
|
| -class BaseSerialPort:
|
| - def setBaudRate(self, baudrate):
|
| - if hasattr(self._serial, "setBaudrate"):
|
| - self._serial.setBaudrate(baudrate)
|
| - else:
|
| - self._serial.setBaudRate(baudrate)
|
| -
|
| - def inWaiting(self):
|
| - return self._serial.inWaiting()
|
| -
|
| - def flushInput(self):
|
| - self._serial.flushInput()
|
| -
|
| - def flushOutput(self):
|
| - self._serial.flushOutput()
|
| -
|
| - def sendBreak(self):
|
| - self._serial.sendBreak()
|
| -
|
| - def getDSR(self):
|
| - return self._serial.getDSR()
|
| -
|
| - def getCD(self):
|
| - return self._serial.getCD()
|
| -
|
| - def getRI(self):
|
| - return self._serial.getRI()
|
| -
|
| - def getCTS(self):
|
| - return self._serial.getCTS()
|
| -
|
| - def setDTR(self, on = 1):
|
| - self._serial.setDTR(on)
|
| -
|
| - def setRTS(self, on = 1):
|
| - self._serial.setRTS(on)
|
| -
|
| -class SerialPort(BaseSerialPort):
|
| - pass
|
| -
|
| -# replace SerialPort with appropriate serial port
|
| -if os.name == 'posix':
|
| - from twisted.internet._posixserialport import SerialPort
|
| -elif os.name == 'java':
|
| - from twisted.internet._javaserialport import SerialPort
|
| -elif sys.platform == 'win32':
|
| - from twisted.internet._win32serialport import SerialPort
|
|
|