mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 18:50:44 +00:00
Mac Serial port detection stuff
This commit is contained in:
parent
076cf5f97d
commit
db5bb323db
19
oximetry.cpp
19
oximetry.cpp
@ -115,11 +115,20 @@ void Oximetry::on_RefreshPortsButton_clicked()
|
||||
#define qesPORTNAME physName
|
||||
#endif
|
||||
for (int i = 0; i < ports.size(); i++) {
|
||||
if (ports.at(i).friendName.toUpper().contains("USB")) {
|
||||
if (firstport.isEmpty()) firstport=ports.at(i). qesPORTNAME;
|
||||
if (!portname.isEmpty() && ports.at(i).qesPORTNAME==portname) current_found=true;
|
||||
ui->SerialPortsCombo->addItem(ports.at(i).qesPORTNAME);
|
||||
z++;
|
||||
if (!ports.at(i).friendName.isEmpty()) {
|
||||
if (ports.at(i).friendName.toUpper().contains("USB")) {
|
||||
if (firstport.isEmpty()) firstport=ports.at(i). qesPORTNAME;
|
||||
if (!portname.isEmpty() && ports.at(i).qesPORTNAME==portname) current_found=true;
|
||||
ui->SerialPortsCombo->addItem(ports.at(i).qesPORTNAME);
|
||||
z++;
|
||||
}
|
||||
} else { // Mac stuff.
|
||||
if (ports.at(i).portName.toUpper().contains("USB") || ports.at(i).portName.toUpper().contains("SPO2")) {
|
||||
if (firstport.isEmpty()) firstport=ports.at(i).portName;
|
||||
if (!portname.isEmpty() && ports.at(i).portName==portname) current_found=true;
|
||||
ui->SerialPortsCombo->addItem(ports.at(i).portName);
|
||||
z++;
|
||||
}
|
||||
}
|
||||
//qDebug() << "Serial Port:" << ports.at(i).qesPORTNAME << ports.at(i).friendName;
|
||||
qDebug() << "port name:" << ports.at(i).portName;
|
||||
|
Loading…
Reference in New Issue
Block a user