Checking windows serial port stuff

This commit is contained in:
Mark Watkins 2011-07-13 15:49:58 +10:00
parent 9e7c91fb77
commit b61ecc383e
4 changed files with 11 additions and 4 deletions

View File

@ -11,5 +11,6 @@
<file>icons/edit-find.png</file>
<file>icons/back.png</file>
<file>fonts/FreeSans.ttf</file>
<file>icons/refresh.png</file>
</qresource>
</RCC>

BIN
icons/refresh.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 815 B

View File

@ -24,7 +24,7 @@ void Oximetry::on_RefreshPortsButton_clicked()
ui->SerialPortsCombo->clear();
for (int i = 0; i < ports.size(); i++) {
if (ports.at(i).friendName.toUpper().contains("USB"))
ui->SerialPortsCombo->addItem(ports.at(i).physName);
ui->SerialPortsCombo->addItem(ports.at(i).portName);
//qDebug() << "port name:" << ports.at(i).portName;
qDebug() << "Serial Port:" << ports.at(i).physName << ports.at(i).friendName;
//qDebug() << "enumerator name:" << ports.at(i).enumName;

View File

@ -36,7 +36,7 @@
<x>0</x>
<y>0</y>
<width>508</width>
<height>304</height>
<height>303</height>
</rect>
</property>
<layout class="QVBoxLayout" name="verticalLayout_3">
@ -86,7 +86,11 @@
<item>
<widget class="QToolButton" name="RefreshPortsButton">
<property name="text">
<string>R</string>
<string/>
</property>
<property name="icon">
<iconset resource="Resources.qrc">
<normaloff>:/icons/refresh.png</normaloff>:/icons/refresh.png</iconset>
</property>
</widget>
</item>
@ -117,6 +121,8 @@
</item>
</layout>
</widget>
<resources/>
<resources>
<include location="Resources.qrc"/>
</resources>
<connections/>
</ui>