瀏覽代碼

Merge pull request #3 from Lucretiel/master

Specify seven data bits in the serial interface.

pyserial defaults to 8, but the Alpha protocol calls for 7.
Matt Sparks 12 年之前
父節點
當前提交
64c622b482
共有 1 個文件被更改,包括 1 次插入0 次删除
  1. 1 0
      alphasign/interfaces/local.py

+ 1 - 0
alphasign/interfaces/local.py

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