Hey everybody,
just got a question if anyone noticed similar problem to mine..
im using qt 4.5 with qexserialport 1.2 alpha
got a device connected to USB Serial Port (FTDI)
I noticed that it actually cant detect it...
QextSerialEnumerator enumer;
QList<QextPortInfo>ports = enumer.getPorts();
strlist.clear();
for( int i = 0; i < ports.count(); ++i) strlist << ports.at(i).portName;
ui.comboBox_Comm->addItems(strlist);
QextSerialEnumerator enumer;
QList<QextPortInfo>ports = enumer.getPorts();
QStringList strlist;
strlist.clear();
for( int i = 0; i < ports.count(); ++i) strlist << ports.at(i).portName;
ui.comboBox_Comm->addItems(strlist);
To copy to clipboard, switch view to plain text mode
In fact i have got the info from real comm-port, but can't get the info from virtual comm-port
thanks!
Jim
Bookmarks