Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有很多串行端口,但我想选择一个特定的端口,即 /dev/ttyUSB0 来发送和接收数据,如何将端口设置为 /dev/ttyUSB0,我不希望用户从许多可用端口中进行选择,我只想使用 /dev/USB0 。
您可以使用QSerialPort port("/dev/ttyUSB0"). 此QSerialPort构造函数接受端口名称,其格式为QSerialPortInfo::portName(). 没有记录该名称在"/dev/ttyUSB0"表单中,但似乎是这样。
QSerialPort port("/dev/ttyUSB0")
QSerialPort
QSerialPortInfo::portName()
"/dev/ttyUSB0"