gpt4 book ai didi

python - 如何使用 pySerial 在 python 中配置 tty?

转载 作者:太空宇宙 更新时间:2023-11-04 03:56:52 24 4
gpt4 key购买 nike

pySerial 模块提供了一个与串行设备通信的接口(interface)。但是,查看串行设备的配置,例如 /dev/ttyS1,有很多东西需要配置:

stty -F /dev/ttyS1 -a
speed 1200 baud; rows 0; columns 0; line = 0;
intr = ^C; quit = ^\; erase = ^?; kill = ^U; eof = ^D; eol = <undef>; eol2 = <undef>; swtch = <undef>; start = ^Q; stop = ^S; susp = ^Z; rprnt = ^R; werase = ^W; lnext = ^V; flush = ^O; min = 1; time = 0;
parenb -parodd cs7 -hupcl cstopb cread clocal -crtscts
-ignbrk -brkint ignpar -parmrk -inpck -istrip -inlcr -igncr -icrnl -ixon -ixoff -iuclc -ixany -imaxbel -iutf8
-opost -olcuc -ocrnl -onlcr -onocr -onlret -ofill -ofdel nl0 cr0 tab0 bs0 vt0 ff0 -isig -icanon -iexten -echo -echoe -echok -echonl -noflsh -xcase -tostop -echoprt -echoctl -echoke

我对参数 -parodd cs7 特别感兴趣。有没有办法从 python 中配置此参数,或者我是否必须调用外部命令来执行此操作(如 stty -F/dev/ttyS1 ...)?

最佳答案

是的,你甚至可以在声明之后配置

ser = serial.Serial('/dev/ttyS1', 19200, timeout=1, parity=serial.PARITY_ODD)

ser.parity = serial.PARITY_EVEN

ser.bytesize = serial.SEVENBITS

关于python - 如何使用 pySerial 在 python 中配置 tty?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17927672/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com