PySerial使用USB到rs232和MAX3232CDR以不同的方式工作

时间:2017-07-23 07:42:27

标签: python pyserial

任何人都可以解释我的错误在哪里

import time, serial
from _poll_msg import *
from exception import BadCRC
ser = serial.Serial()
ser.parity = serial.PARITY_NONE
ser.baudrate= 19200
ser.port = '/dev/ttyUSB0'
ser.open()

def write(cmd):
    ser.flushOutput()
    ser.parity = serial.PARITY_MARK
    ser.write(('82'+ mashin_n).decode('hex'))
    crc = crc_sas(mashin_n + cmd)
    cmd = cmd + crc
    ser.parity = serial.PARITY_SPACE
    ser.write(cmd.decode('hex'))
    return True

def read(size):
    response = ser.read(size).encode('hex')
    # with ttyUSB? response is 011912345678crc
    # with ttyS? response = 0101010101
    # but error is in write (010101 - command is bad)
    time.sleep(0.2)
    try:
        crc_sas(response, chk=True)
    except BadCRC:
        return False
    return response[4:-4]

它没有错误。 但是,如果我将端口更改为/ dev / ttyS1 这是行不通的。 哪里有差异,哪里出错了。

0 个答案:

没有答案