소스 검색

Check connection before writing to serial

Matt Sparks 16 년 전
부모
커밋
9589cb72f2
1개의 변경된 파일3개의 추가작업 그리고 2개의 파일을 삭제
  1. 3 2
      alphasign/interfaces/local.py

+ 3 - 2
alphasign/interfaces/local.py

@@ -16,6 +16,7 @@ class Serial(base.BaseInterface):
     """
     self.device = device
     self.debug = True
+    self._conn = None
 
   def connect(self):
     """Establish connection to the device.
@@ -42,8 +43,8 @@ class Serial(base.BaseInterface):
     :param packet: packet to write
     :type packet: :class:`alphasign.packet.Packet`
     """
-    if not self._conn:
-      return
+    if not self._conn or not self._conn.isOpen():
+      self.connect()
     if self.debug:
       print "Writing packet: %s" % repr(packet)
     try: