소스 검색

Changed bytesize=7 to bytesize=serial.SEVENBITS

Nathan West 12 년 전
부모
커밋
d882c0e7f8
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      alphasign/interfaces/local.py

+ 1 - 1
alphasign/interfaces/local.py

@@ -28,7 +28,7 @@ class Serial(base.BaseInterface):
                                baudrate=4800,
                                parity=serial.PARITY_EVEN,
                                stopbits=serial.STOPBITS_TWO,
-                               bytesize=7,
+                               bytesize=serial.SEVENBITS,
                                timeout=1,
                                xonxoff=0,
                                rtscts=0)