mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-06 11:10:44 +00:00
Checking windows serial port stuff
This commit is contained in:
parent
9e7c91fb77
commit
b61ecc383e
@ -11,5 +11,6 @@
|
|||||||
<file>icons/edit-find.png</file>
|
<file>icons/edit-find.png</file>
|
||||||
<file>icons/back.png</file>
|
<file>icons/back.png</file>
|
||||||
<file>fonts/FreeSans.ttf</file>
|
<file>fonts/FreeSans.ttf</file>
|
||||||
|
<file>icons/refresh.png</file>
|
||||||
</qresource>
|
</qresource>
|
||||||
</RCC>
|
</RCC>
|
||||||
|
BIN
icons/refresh.png
Normal file
BIN
icons/refresh.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 815 B |
@ -24,7 +24,7 @@ void Oximetry::on_RefreshPortsButton_clicked()
|
|||||||
ui->SerialPortsCombo->clear();
|
ui->SerialPortsCombo->clear();
|
||||||
for (int i = 0; i < ports.size(); i++) {
|
for (int i = 0; i < ports.size(); i++) {
|
||||||
if (ports.at(i).friendName.toUpper().contains("USB"))
|
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() << "port name:" << ports.at(i).portName;
|
||||||
qDebug() << "Serial Port:" << ports.at(i).physName << ports.at(i).friendName;
|
qDebug() << "Serial Port:" << ports.at(i).physName << ports.at(i).friendName;
|
||||||
//qDebug() << "enumerator name:" << ports.at(i).enumName;
|
//qDebug() << "enumerator name:" << ports.at(i).enumName;
|
||||||
|
12
oximetry.ui
12
oximetry.ui
@ -36,7 +36,7 @@
|
|||||||
<x>0</x>
|
<x>0</x>
|
||||||
<y>0</y>
|
<y>0</y>
|
||||||
<width>508</width>
|
<width>508</width>
|
||||||
<height>304</height>
|
<height>303</height>
|
||||||
</rect>
|
</rect>
|
||||||
</property>
|
</property>
|
||||||
<layout class="QVBoxLayout" name="verticalLayout_3">
|
<layout class="QVBoxLayout" name="verticalLayout_3">
|
||||||
@ -86,7 +86,11 @@
|
|||||||
<item>
|
<item>
|
||||||
<widget class="QToolButton" name="RefreshPortsButton">
|
<widget class="QToolButton" name="RefreshPortsButton">
|
||||||
<property name="text">
|
<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>
|
</property>
|
||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
@ -117,6 +121,8 @@
|
|||||||
</item>
|
</item>
|
||||||
</layout>
|
</layout>
|
||||||
</widget>
|
</widget>
|
||||||
<resources/>
|
<resources>
|
||||||
|
<include location="Resources.qrc"/>
|
||||||
|
</resources>
|
||||||
<connections/>
|
<connections/>
|
||||||
</ui>
|
</ui>
|
||||||
|
Loading…
Reference in New Issue
Block a user