1
0
mirror of https://bitbucket.org/librepilot/librepilot.git synced 2025-03-16 08:29:15 +01:00

OP-1685 Fixed Output config layout, fixed HW config layout for CC.

This commit is contained in:
m_thread 2015-02-18 00:19:58 +01:00
parent 821573144a
commit 6afbec4fc2
3 changed files with 934 additions and 850 deletions

View File

@ -116,8 +116,8 @@
<rect> <rect>
<x>0</x> <x>0</x>
<y>0</y> <y>0</y>
<width>622</width> <width>624</width>
<height>519</height> <height>510</height>
</rect> </rect>
</property> </property>
<layout class="QGridLayout" name="gridLayout_3"> <layout class="QGridLayout" name="gridLayout_3">
@ -309,18 +309,14 @@
</layout> </layout>
</item> </item>
<item row="2" column="1"> <item row="2" column="1">
<layout class="QGridLayout" name="gridLayout" rowstretch="0,0,0,0,0,0"> <layout class="QGridLayout" name="gridLayout" rowstretch="0,0,0,0,0,0,0,0">
<item row="5" column="0"> <item row="4" column="0">
<widget class="QLabel" name="label_4">
<property name="text">
<string/>
</property>
</widget>
</item>
<item row="2" column="0">
<widget class="QComboBox" name="cbFlexi"/> <widget class="QComboBox" name="cbFlexi"/>
</item> </item>
<item row="1" column="4"> <item row="6" column="0">
<widget class="QComboBox" name="cbTele"/>
</item>
<item row="3" column="3">
<widget class="QLabel" name="label_8"> <widget class="QLabel" name="label_8">
<property name="text"> <property name="text">
<string>USB HID Port</string> <string>USB HID Port</string>
@ -330,49 +326,14 @@
</property> </property>
</widget> </widget>
</item> </item>
<item row="4" column="0"> <item row="7" column="0">
<widget class="QComboBox" name="cbTele"/> <widget class="QLabel" name="label_4">
</item>
<item row="1" column="1" rowspan="5" colspan="3">
<widget class="QLabel" name="label_2">
<property name="text"> <property name="text">
<string/> <string/>
</property> </property>
<property name="scaledContents">
<bool>true</bool>
</property>
</widget> </widget>
</item> </item>
<item row="0" column="2"> <item row="5" column="3">
<widget class="QComboBox" name="cbRcvr"/>
</item>
<item row="3" column="0">
<widget class="QLabel" name="label_3">
<property name="text">
<string>MainPort</string>
</property>
<property name="alignment">
<set>Qt::AlignBottom|Qt::AlignLeading|Qt::AlignLeft</set>
</property>
</widget>
</item>
<item row="2" column="4">
<widget class="QComboBox" name="cbUsbHid"/>
</item>
<item row="4" column="4">
<widget class="QComboBox" name="cbUsbVcp"/>
</item>
<item row="1" column="0">
<widget class="QLabel" name="label_5">
<property name="text">
<string>FlexiPort</string>
</property>
<property name="alignment">
<set>Qt::AlignBottom|Qt::AlignLeading|Qt::AlignLeft</set>
</property>
</widget>
</item>
<item row="3" column="4">
<widget class="QLabel" name="label_9"> <widget class="QLabel" name="label_9">
<property name="text"> <property name="text">
<string>USB VCP Port</string> <string>USB VCP Port</string>
@ -382,17 +343,40 @@
</property> </property>
</widget> </widget>
</item> </item>
<item row="0" column="1"> <item row="3" column="1" rowspan="5" colspan="2">
<widget class="QLabel" name="label_7"> <widget class="QLabel" name="label_2">
<property name="text"> <property name="text">
<string>RcvrPort</string> <string/>
</property> </property>
<property name="alignment"> <property name="scaledContents">
<set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set> <bool>false</bool>
</property> </property>
</widget> </widget>
</item> </item>
<item row="2" column="5"> <item row="5" column="0">
<widget class="QLabel" name="label_3">
<property name="text">
<string>Main Port</string>
</property>
<property name="alignment">
<set>Qt::AlignBottom|Qt::AlignLeading|Qt::AlignLeft</set>
</property>
</widget>
</item>
<item row="3" column="0">
<widget class="QLabel" name="label_5">
<property name="text">
<string>Flexi Port</string>
</property>
<property name="alignment">
<set>Qt::AlignBottom|Qt::AlignLeading|Qt::AlignLeft</set>
</property>
</widget>
</item>
<item row="4" column="3">
<widget class="QComboBox" name="cbUsbHid"/>
</item>
<item row="4" column="4">
<spacer name="horizontalSpacer_2"> <spacer name="horizontalSpacer_2">
<property name="orientation"> <property name="orientation">
<enum>Qt::Horizontal</enum> <enum>Qt::Horizontal</enum>
@ -405,6 +389,22 @@
</property> </property>
</spacer> </spacer>
</item> </item>
<item row="6" column="3">
<widget class="QComboBox" name="cbUsbVcp"/>
</item>
<item row="2" column="1" colspan="2" alignment="Qt::AlignLeft">
<widget class="QComboBox" name="cbRcvr"/>
</item>
<item row="1" column="1" colspan="2" alignment="Qt::AlignLeft">
<widget class="QLabel" name="label_7">
<property name="text">
<string>Receiver Port</string>
</property>
<property name="alignment">
<set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
</property>
</widget>
</item>
</layout> </layout>
</item> </item>
<item row="2" column="0"> <item row="2" column="0">

View File

@ -53,6 +53,7 @@ ConfigOutputWidget::ConfigOutputWidget(QWidget *parent) : ConfigTaskWidget(paren
ui->setupUi(this); ui->setupUi(this);
ui->gvWarning->setScene(new QGraphicsScene(this)); ui->gvWarning->setScene(new QGraphicsScene(this));
ui->gvFrame->setVisible(false);
ExtensionSystem::PluginManager *pm = ExtensionSystem::PluginManager::instance(); ExtensionSystem::PluginManager *pm = ExtensionSystem::PluginManager::instance();
Core::Internal::GeneralSettings *settings = pm->getObject<Core::Internal::GeneralSettings>(); Core::Internal::GeneralSettings *settings = pm->getObject<Core::Internal::GeneralSettings>();
@ -460,8 +461,10 @@ void ConfigOutputWidget::setWarning(QString message)
ui->gvWarning->scene()->clear(); ui->gvWarning->scene()->clear();
if (!message.isNull()) { if (!message.isNull()) {
warningPic.load(":/configgadget/images/error.svg"); warningPic.load(":/configgadget/images/error.svg");
ui->gvFrame->setVisible(true);
} else { } else {
warningPic.load(""); warningPic.load("");
ui->gvFrame->setVisible(false);
} }
ui->gvWarning->scene()->addPixmap(warningPic); ui->gvWarning->scene()->addPixmap(warningPic);
ui->gvWarning->setSceneRect(warningPic.rect()); ui->gvWarning->setSceneRect(warningPic.rect());

View File

@ -122,11 +122,11 @@
<rect> <rect>
<x>0</x> <x>0</x>
<y>0</y> <y>0</y>
<width>831</width> <width>743</width>
<height>659</height> <height>668</height>
</rect> </rect>
</property> </property>
<layout class="QVBoxLayout" name="verticalLayout_3"> <layout class="QVBoxLayout" name="verticalLayout_3" stretch="0,0,0">
<property name="spacing"> <property name="spacing">
<number>6</number> <number>6</number>
</property> </property>
@ -143,819 +143,900 @@
<number>12</number> <number>12</number>
</property> </property>
<item> <item>
<widget class="QGroupBox" name="groupBox_2"> <widget class="QGroupBox" name="groupBox">
<property name="sizePolicy">
<sizepolicy hsizetype="Expanding" vsizetype="Fixed">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="minimumSize">
<size>
<width>0</width>
<height>0</height>
</size>
</property>
<property name="title"> <property name="title">
<string>Output configuration</string> <string>GroupBox</string>
</property> </property>
<layout class="QGridLayout" name="gridLayout"> <layout class="QVBoxLayout" name="verticalLayout_5" stretch="0,0">
<item row="0" column="1"> <property name="leftMargin">
<widget class="QLabel" name="label_9"> <number>9</number>
<property name="text"> </property>
<string>Bank(Channels):</string> <property name="topMargin">
<number>9</number>
</property>
<property name="rightMargin">
<number>9</number>
</property>
<property name="bottomMargin">
<number>9</number>
</property>
<item>
<widget class="QFrame" name="frame">
<property name="frameShape">
<enum>QFrame::NoFrame</enum>
</property> </property>
<property name="alignment"> <property name="frameShadow">
<set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set> <enum>QFrame::Raised</enum>
</property> </property>
</widget> <layout class="QFormLayout" name="formLayout">
</item> <property name="leftMargin">
<item row="0" column="2"> <number>0</number>
<widget class="QLabel" name="chBank1">
<property name="text">
<string>-</string>
</property>
<property name="alignment">
<set>Qt::AlignCenter</set>
</property>
</widget>
</item>
<item row="0" column="6">
<widget class="QLabel" name="chBank5">
<property name="text">
<string>-</string>
</property>
<property name="alignment">
<set>Qt::AlignCenter</set>
</property>
</widget>
</item>
<item row="1" column="3">
<widget class="QComboBox" name="cb_outputRate2">
<property name="enabled">
<bool>false</bool>
</property>
<property name="sizePolicy">
<sizepolicy hsizetype="Minimum" vsizetype="Fixed">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="minimumSize">
<size>
<width>0</width>
<height>20</height>
</size>
</property>
<property name="maximumSize">
<size>
<width>70</width>
<height>16777215</height>
</size>
</property>
<property name="toolTip">
<string>Setup PWM rate here: usual value is 490 Hz for multirotor airframes. OneShot and OneShot125 does not use this value</string>
</property>
<property name="styleSheet">
<string notr="true"/>
</property>
<item>
<property name="text">
<string>50</string>
</property> </property>
</item> <property name="topMargin">
<item> <number>0</number>
<property name="text">
<string>60</string>
</property> </property>
</item> <property name="rightMargin">
<item> <number>0</number>
<property name="text">
<string>125</string>
</property> </property>
</item> <property name="bottomMargin">
<item> <number>0</number>
<property name="text">
<string>165</string>
</property> </property>
</item> <item row="0" column="0">
<item> <widget class="QFrame" name="frame_3">
<property name="text"> <property name="frameShape">
<string>270</string> <enum>QFrame::NoFrame</enum>
</property> </property>
</item> <property name="frameShadow">
<item> <enum>QFrame::Raised</enum>
<property name="text"> </property>
<string>330</string> <layout class="QVBoxLayout" name="verticalLayout_7">
</property> <property name="leftMargin">
</item> <number>0</number>
<item> </property>
<property name="text"> <property name="topMargin">
<string>400</string> <number>0</number>
</property> </property>
</item> <property name="rightMargin">
<item> <number>0</number>
<property name="text"> </property>
<string>490</string> <property name="bottomMargin">
</property> <number>0</number>
</item> </property>
</widget> <item>
</item> <widget class="QLabel" name="label_9">
<item row="0" column="3"> <property name="text">
<widget class="QLabel" name="chBank2"> <string>Bank(Channels):</string>
<property name="text"> </property>
<string/> <property name="alignment">
</property> <set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
<property name="alignment"> </property>
<set>Qt::AlignCenter</set> </widget>
</property> </item>
</widget> <item>
</item> <widget class="QLabel" name="label_3">
<item row="1" column="5"> <property name="sizePolicy">
<widget class="QComboBox" name="cb_outputRate4"> <sizepolicy hsizetype="Minimum" vsizetype="Preferred">
<property name="enabled"> <horstretch>0</horstretch>
<bool>false</bool> <verstretch>0</verstretch>
</property> </sizepolicy>
<property name="sizePolicy"> </property>
<sizepolicy hsizetype="Minimum" vsizetype="Fixed"> <property name="minimumSize">
<horstretch>0</horstretch> <size>
<verstretch>0</verstretch> <width>0</width>
</sizepolicy> <height>20</height>
</property> </size>
<property name="minimumSize"> </property>
<size> <property name="text">
<width>0</width> <string>Update rate:</string>
<height>20</height> </property>
</size> <property name="alignment">
</property> <set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
<property name="maximumSize"> </property>
<size> </widget>
<width>70</width> </item>
<height>16777215</height> <item>
</size> <widget class="QLabel" name="label">
</property> <property name="sizePolicy">
<property name="toolTip"> <sizepolicy hsizetype="Minimum" vsizetype="Preferred">
<string>Setup PWM rate here: usual value is 490 Hz for multirotor airframes. OneShot and OneShot125 does not use this value</string> <horstretch>0</horstretch>
</property> <verstretch>0</verstretch>
<property name="styleSheet"> </sizepolicy>
<string notr="true"/> </property>
</property> <property name="minimumSize">
<item> <size>
<property name="text"> <width>0</width>
<string>50</string> <height>20</height>
</property> </size>
</item> </property>
<item> <property name="text">
<property name="text"> <string>Mode:</string>
<string>60</string> </property>
</property> <property name="alignment">
</item> <set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
<item> </property>
<property name="text"> </widget>
<string>125</string> </item>
</property> </layout>
</item> </widget>
<item> </item>
<property name="text"> <item row="0" column="1">
<string>165</string> <widget class="QFrame" name="frame_2">
</property> <layout class="QGridLayout" name="gridLayout">
</item> <property name="leftMargin">
<item> <number>0</number>
<property name="text"> </property>
<string>270</string> <property name="topMargin">
</property> <number>0</number>
</item> </property>
<item> <property name="rightMargin">
<property name="text"> <number>0</number>
<string>330</string> </property>
</property> <property name="bottomMargin">
</item> <number>0</number>
<item> </property>
<property name="text"> <item row="0" column="2">
<string>400</string> <widget class="QLabel" name="chBank1">
</property> <property name="text">
</item> <string>-</string>
<item> </property>
<property name="text"> <property name="alignment">
<string>490</string> <set>Qt::AlignCenter</set>
</property> </property>
</item> </widget>
</widget> </item>
</item> <item row="0" column="6">
<item row="1" column="4"> <widget class="QLabel" name="chBank5">
<widget class="QComboBox" name="cb_outputRate3"> <property name="text">
<property name="enabled"> <string>-</string>
<bool>false</bool> </property>
</property> <property name="alignment">
<property name="sizePolicy"> <set>Qt::AlignCenter</set>
<sizepolicy hsizetype="Minimum" vsizetype="Fixed"> </property>
<horstretch>0</horstretch> </widget>
<verstretch>0</verstretch> </item>
</sizepolicy> <item row="1" column="3">
</property> <widget class="QComboBox" name="cb_outputRate2">
<property name="minimumSize"> <property name="enabled">
<size> <bool>false</bool>
<width>0</width> </property>
<height>20</height> <property name="sizePolicy">
</size> <sizepolicy hsizetype="Minimum" vsizetype="Fixed">
</property> <horstretch>0</horstretch>
<property name="maximumSize"> <verstretch>0</verstretch>
<size> </sizepolicy>
<width>70</width> </property>
<height>16777215</height> <property name="minimumSize">
</size> <size>
</property> <width>0</width>
<property name="toolTip"> <height>20</height>
<string>Setup PWM rate here: usual value is 490 Hz for multirotor airframes. OneShot and OneShot125 does not use this value</string> </size>
</property> </property>
<property name="styleSheet"> <property name="maximumSize">
<string notr="true"/> <size>
</property> <width>16777215</width>
<item> <height>16777215</height>
<property name="text"> </size>
<string>50</string> </property>
</property> <property name="toolTip">
</item> <string>Setup PWM rate here: usual value is 490 Hz for multirotor airframes. OneShot and OneShot125 does not use this value</string>
<item> </property>
<property name="text"> <property name="styleSheet">
<string>60</string> <string notr="true"/>
</property> </property>
</item> <item>
<item> <property name="text">
<property name="text"> <string>50</string>
<string>125</string> </property>
</property> </item>
</item> <item>
<item> <property name="text">
<property name="text"> <string>60</string>
<string>165</string> </property>
</property> </item>
</item> <item>
<item> <property name="text">
<property name="text"> <string>125</string>
<string>270</string> </property>
</property> </item>
</item> <item>
<item> <property name="text">
<property name="text"> <string>165</string>
<string>330</string> </property>
</property> </item>
</item> <item>
<item> <property name="text">
<property name="text"> <string>270</string>
<string>400</string> </property>
</property> </item>
</item> <item>
<item> <property name="text">
<property name="text"> <string>330</string>
<string>490</string> </property>
</property> </item>
</item> <item>
</widget> <property name="text">
</item> <string>400</string>
<item row="1" column="6"> </property>
<widget class="QComboBox" name="cb_outputRate5"> </item>
<property name="enabled"> <item>
<bool>false</bool> <property name="text">
</property> <string>490</string>
<property name="sizePolicy"> </property>
<sizepolicy hsizetype="Minimum" vsizetype="Fixed"> </item>
<horstretch>0</horstretch> </widget>
<verstretch>0</verstretch> </item>
</sizepolicy> <item row="0" column="3">
</property> <widget class="QLabel" name="chBank2">
<property name="minimumSize"> <property name="text">
<size> <string/>
<width>0</width> </property>
<height>20</height> <property name="alignment">
</size> <set>Qt::AlignCenter</set>
</property> </property>
<property name="maximumSize"> </widget>
<size> </item>
<width>70</width> <item row="1" column="5">
<height>16777215</height> <widget class="QComboBox" name="cb_outputRate4">
</size> <property name="enabled">
</property> <bool>false</bool>
<property name="toolTip"> </property>
<string>Setup PWM rate here: usual value is 490 Hz for multirotor airframes. OneShot and OneShot125 does not use this value</string> <property name="sizePolicy">
</property> <sizepolicy hsizetype="Minimum" vsizetype="Fixed">
<property name="styleSheet"> <horstretch>0</horstretch>
<string notr="true"/> <verstretch>0</verstretch>
</property> </sizepolicy>
<item> </property>
<property name="text"> <property name="minimumSize">
<string>50</string> <size>
</property> <width>0</width>
</item> <height>20</height>
<item> </size>
<property name="text"> </property>
<string>60</string> <property name="maximumSize">
</property> <size>
</item> <width>16777215</width>
<item> <height>16777215</height>
<property name="text"> </size>
<string>125</string> </property>
</property> <property name="toolTip">
</item> <string>Setup PWM rate here: usual value is 490 Hz for multirotor airframes. OneShot and OneShot125 does not use this value</string>
<item> </property>
<property name="text"> <property name="styleSheet">
<string>165</string> <string notr="true"/>
</property> </property>
</item> <item>
<item> <property name="text">
<property name="text"> <string>50</string>
<string>270</string> </property>
</property> </item>
</item> <item>
<item> <property name="text">
<property name="text"> <string>60</string>
<string>330</string> </property>
</property> </item>
</item> <item>
<item> <property name="text">
<property name="text"> <string>125</string>
<string>400</string> </property>
</property> </item>
</item> <item>
<item> <property name="text">
<property name="text"> <string>165</string>
<string>490</string> </property>
</property> </item>
</item> <item>
</widget> <property name="text">
</item> <string>270</string>
<item row="2" column="6"> </property>
<widget class="QComboBox" name="cb_outputMode5"> </item>
<property name="enabled"> <item>
<bool>false</bool> <property name="text">
</property> <string>330</string>
<property name="sizePolicy"> </property>
<sizepolicy hsizetype="Minimum" vsizetype="Fixed"> </item>
<horstretch>0</horstretch> <item>
<verstretch>0</verstretch> <property name="text">
</sizepolicy> <string>400</string>
</property> </property>
<property name="minimumSize"> </item>
<size> <item>
<width>0</width> <property name="text">
<height>20</height> <string>490</string>
</size> </property>
</property> </item>
<property name="maximumSize"> </widget>
<size> </item>
<width>70</width> <item row="1" column="4">
<height>16777215</height> <widget class="QComboBox" name="cb_outputRate3">
</size> <property name="enabled">
</property> <bool>false</bool>
<property name="toolTip"> </property>
<string>Setup output mode. Use PWM or OneShot with Standard ESCs.\nSeveral other ESCs like BLHeli 13+ can use the more advanced OneShot125.\nWhen using OneShot125 all values set in min/max and idle are divided by eight before being sent to esc (i.e. 1000 = 125, 2000 = 250).</string> <property name="sizePolicy">
</property> <sizepolicy hsizetype="Minimum" vsizetype="Fixed">
</widget> <horstretch>0</horstretch>
</item> <verstretch>0</verstretch>
<item row="2" column="4"> </sizepolicy>
<widget class="QComboBox" name="cb_outputMode3"> </property>
<property name="enabled"> <property name="minimumSize">
<bool>false</bool> <size>
</property> <width>0</width>
<property name="sizePolicy"> <height>20</height>
<sizepolicy hsizetype="Minimum" vsizetype="Fixed"> </size>
<horstretch>0</horstretch> </property>
<verstretch>0</verstretch> <property name="maximumSize">
</sizepolicy> <size>
</property> <width>16777215</width>
<property name="minimumSize"> <height>16777215</height>
<size> </size>
<width>0</width> </property>
<height>20</height> <property name="toolTip">
</size> <string>Setup PWM rate here: usual value is 490 Hz for multirotor airframes. OneShot and OneShot125 does not use this value</string>
</property> </property>
<property name="maximumSize"> <property name="styleSheet">
<size> <string notr="true"/>
<width>70</width> </property>
<height>16777215</height> <item>
</size> <property name="text">
</property> <string>50</string>
<property name="toolTip"> </property>
<string>Setup output mode. Use PWM or OneShot with Standard ESCs.\nSeveral other ESCs like BLHeli 13+ can use the more advanced OneShot125.\nWhen using OneShot125 all values set in min/max and idle are divided by eight before being sent to esc (i.e. 1000 = 125, 2000 = 250).</string> </item>
</property> <item>
</widget> <property name="text">
</item> <string>60</string>
<item row="0" column="4"> </property>
<widget class="QLabel" name="chBank3"> </item>
<property name="text"> <item>
<string>-</string> <property name="text">
</property> <string>125</string>
<property name="alignment"> </property>
<set>Qt::AlignCenter</set> </item>
</property> <item>
</widget> <property name="text">
</item> <string>165</string>
<item row="0" column="5"> </property>
<widget class="QLabel" name="chBank4"> </item>
<property name="text"> <item>
<string>-</string> <property name="text">
</property> <string>270</string>
<property name="alignment"> </property>
<set>Qt::AlignCenter</set> </item>
</property> <item>
</widget> <property name="text">
</item> <string>330</string>
<item row="1" column="2"> </property>
<widget class="QComboBox" name="cb_outputRate1"> </item>
<property name="enabled"> <item>
<bool>false</bool> <property name="text">
</property> <string>400</string>
<property name="sizePolicy"> </property>
<sizepolicy hsizetype="Minimum" vsizetype="Fixed"> </item>
<horstretch>0</horstretch> <item>
<verstretch>0</verstretch> <property name="text">
</sizepolicy> <string>490</string>
</property> </property>
<property name="minimumSize"> </item>
<size> </widget>
<width>0</width> </item>
<height>20</height> <item row="1" column="6">
</size> <widget class="QComboBox" name="cb_outputRate5">
</property> <property name="enabled">
<property name="maximumSize"> <bool>false</bool>
<size> </property>
<width>70</width> <property name="sizePolicy">
<height>16777215</height> <sizepolicy hsizetype="Minimum" vsizetype="Fixed">
</size> <horstretch>0</horstretch>
</property> <verstretch>0</verstretch>
<property name="toolTip"> </sizepolicy>
<string>Setup PWM rate here: usual value is 490 Hz for multirotor airframes. OneShot and OneShot125 does not use this value </property>
<property name="minimumSize">
<size>
<width>0</width>
<height>20</height>
</size>
</property>
<property name="maximumSize">
<size>
<width>16777215</width>
<height>16777215</height>
</size>
</property>
<property name="toolTip">
<string>Setup PWM rate here: usual value is 490 Hz for multirotor airframes. OneShot and OneShot125 does not use this value</string>
</property>
<property name="styleSheet">
<string notr="true"/>
</property>
<item>
<property name="text">
<string>50</string>
</property>
</item>
<item>
<property name="text">
<string>60</string>
</property>
</item>
<item>
<property name="text">
<string>125</string>
</property>
</item>
<item>
<property name="text">
<string>165</string>
</property>
</item>
<item>
<property name="text">
<string>270</string>
</property>
</item>
<item>
<property name="text">
<string>330</string>
</property>
</item>
<item>
<property name="text">
<string>400</string>
</property>
</item>
<item>
<property name="text">
<string>490</string>
</property>
</item>
</widget>
</item>
<item row="2" column="6">
<widget class="QComboBox" name="cb_outputMode5">
<property name="enabled">
<bool>false</bool>
</property>
<property name="sizePolicy">
<sizepolicy hsizetype="Minimum" vsizetype="Fixed">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="minimumSize">
<size>
<width>0</width>
<height>20</height>
</size>
</property>
<property name="maximumSize">
<size>
<width>16777215</width>
<height>16777215</height>
</size>
</property>
<property name="toolTip">
<string>Setup output mode. Use PWM or OneShot with Standard ESCs.\nSeveral other ESCs like BLHeli 13+ can use the more advanced OneShot125.\nWhen using OneShot125 all values set in min/max and idle are divided by eight before being sent to esc (i.e. 1000 = 125, 2000 = 250).</string>
</property>
</widget>
</item>
<item row="2" column="4">
<widget class="QComboBox" name="cb_outputMode3">
<property name="enabled">
<bool>false</bool>
</property>
<property name="sizePolicy">
<sizepolicy hsizetype="Minimum" vsizetype="Fixed">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="minimumSize">
<size>
<width>0</width>
<height>20</height>
</size>
</property>
<property name="maximumSize">
<size>
<width>16777215</width>
<height>16777215</height>
</size>
</property>
<property name="toolTip">
<string>Setup output mode. Use PWM or OneShot with Standard ESCs.\nSeveral other ESCs like BLHeli 13+ can use the more advanced OneShot125.\nWhen using OneShot125 all values set in min/max and idle are divided by eight before being sent to esc (i.e. 1000 = 125, 2000 = 250).</string>
</property>
</widget>
</item>
<item row="0" column="4">
<widget class="QLabel" name="chBank3">
<property name="text">
<string>-</string>
</property>
<property name="alignment">
<set>Qt::AlignCenter</set>
</property>
</widget>
</item>
<item row="0" column="5">
<widget class="QLabel" name="chBank4">
<property name="text">
<string>-</string>
</property>
<property name="alignment">
<set>Qt::AlignCenter</set>
</property>
</widget>
</item>
<item row="1" column="2">
<widget class="QComboBox" name="cb_outputRate1">
<property name="enabled">
<bool>false</bool>
</property>
<property name="sizePolicy">
<sizepolicy hsizetype="Minimum" vsizetype="Fixed">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="minimumSize">
<size>
<width>0</width>
<height>20</height>
</size>
</property>
<property name="maximumSize">
<size>
<width>16777215</width>
<height>16777215</height>
</size>
</property>
<property name="toolTip">
<string>Setup PWM rate here: usual value is 490 Hz for multirotor airframes. OneShot and OneShot125 does not use this value
</string> </string>
</property> </property>
<property name="autoFillBackground"> <property name="autoFillBackground">
<bool>false</bool> <bool>false</bool>
</property> </property>
<property name="styleSheet"> <property name="styleSheet">
<string notr="true"/> <string notr="true"/>
</property> </property>
<item> <item>
<property name="text"> <property name="text">
<string>50</string> <string>50</string>
</property> </property>
</item> </item>
<item> <item>
<property name="text"> <property name="text">
<string>60</string> <string>60</string>
</property> </property>
</item> </item>
<item> <item>
<property name="text"> <property name="text">
<string>125</string> <string>125</string>
</property> </property>
</item> </item>
<item> <item>
<property name="text"> <property name="text">
<string>165</string> <string>165</string>
</property> </property>
</item> </item>
<item> <item>
<property name="text"> <property name="text">
<string>270</string> <string>270</string>
</property> </property>
</item> </item>
<item> <item>
<property name="text"> <property name="text">
<string>330</string> <string>330</string>
</property> </property>
</item> </item>
<item> <item>
<property name="text"> <property name="text">
<string>400</string> <string>400</string>
</property> </property>
</item> </item>
<item> <item>
<property name="text"> <property name="text">
<string>490</string> <string>490</string>
</property> </property>
</item> </item>
</widget> </widget>
</item> </item>
<item row="2" column="3"> <item row="2" column="3">
<widget class="QComboBox" name="cb_outputMode2"> <widget class="QComboBox" name="cb_outputMode2">
<property name="enabled"> <property name="enabled">
<bool>false</bool> <bool>false</bool>
</property> </property>
<property name="sizePolicy"> <property name="sizePolicy">
<sizepolicy hsizetype="Minimum" vsizetype="Fixed"> <sizepolicy hsizetype="Minimum" vsizetype="Fixed">
<horstretch>0</horstretch> <horstretch>0</horstretch>
<verstretch>0</verstretch> <verstretch>0</verstretch>
</sizepolicy> </sizepolicy>
</property> </property>
<property name="minimumSize"> <property name="minimumSize">
<size> <size>
<width>0</width> <width>0</width>
<height>20</height> <height>20</height>
</size> </size>
</property> </property>
<property name="maximumSize"> <property name="maximumSize">
<size> <size>
<width>70</width> <width>16777215</width>
<height>16777215</height> <height>16777215</height>
</size> </size>
</property> </property>
<property name="toolTip"> <property name="toolTip">
<string>Setup output mode. Use PWM or OneShot with Standard ESCs.\nSeveral other ESCs like BLHeli 13+ can use the more advanced OneShot125.\nWhen using OneShot125 all values set in min/max and idle are divided by eight before being sent to esc (i.e. 1000 = 125, 2000 = 250).</string> <string>Setup output mode. Use PWM or OneShot with Standard ESCs.\nSeveral other ESCs like BLHeli 13+ can use the more advanced OneShot125.\nWhen using OneShot125 all values set in min/max and idle are divided by eight before being sent to esc (i.e. 1000 = 125, 2000 = 250).</string>
</property> </property>
</widget> </widget>
</item> </item>
<item row="2" column="1"> <item row="2" column="2">
<widget class="QLabel" name="label"> <widget class="QComboBox" name="cb_outputMode1">
<property name="sizePolicy"> <property name="enabled">
<sizepolicy hsizetype="Minimum" vsizetype="Preferred"> <bool>false</bool>
<horstretch>0</horstretch> </property>
<verstretch>0</verstretch> <property name="sizePolicy">
</sizepolicy> <sizepolicy hsizetype="Minimum" vsizetype="Fixed">
</property> <horstretch>0</horstretch>
<property name="minimumSize"> <verstretch>0</verstretch>
<size> </sizepolicy>
<width>0</width> </property>
<height>20</height> <property name="minimumSize">
</size> <size>
</property> <width>0</width>
<property name="text"> <height>20</height>
<string>Mode:</string> </size>
</property> </property>
<property name="alignment"> <property name="maximumSize">
<set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set> <size>
</property> <width>16777215</width>
</widget> <height>16777215</height>
</item> </size>
<item row="2" column="2"> </property>
<widget class="QComboBox" name="cb_outputMode1"> <property name="toolTip">
<property name="enabled"> <string>Setup output mode. Use PWM or OneShot with Standard ESCs.
<bool>false</bool>
</property>
<property name="sizePolicy">
<sizepolicy hsizetype="Minimum" vsizetype="Fixed">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="minimumSize">
<size>
<width>0</width>
<height>20</height>
</size>
</property>
<property name="maximumSize">
<size>
<width>70</width>
<height>16777215</height>
</size>
</property>
<property name="toolTip">
<string>Setup output mode. Use PWM or OneShot with Standard ESCs.
Several other ESCs like BLHeli 13+ can use the more advanced OneShot125. Several other ESCs like BLHeli 13+ can use the more advanced OneShot125.
When using OneShot125 all values set in min/max and idle are divided by eight before being sent to esc (i.e. 1000 = 125, 2000 = 250).</string> When using OneShot125 all values set in min/max and idle are divided by eight before being sent to esc (i.e. 1000 = 125, 2000 = 250).</string>
</property> </property>
</widget>
</item>
<item row="2" column="5">
<widget class="QComboBox" name="cb_outputMode4">
<property name="enabled">
<bool>false</bool>
</property>
<property name="sizePolicy">
<sizepolicy hsizetype="Minimum" vsizetype="Fixed">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="minimumSize">
<size>
<width>0</width>
<height>20</height>
</size>
</property>
<property name="maximumSize">
<size>
<width>16777215</width>
<height>16777215</height>
</size>
</property>
<property name="toolTip">
<string>Setup output mode. Use PWM or OneShot with Standard ESCs.\nSeveral other ESCs like BLHeli 13+ can use the more advanced OneShot125.\nWhen using OneShot125 all values set in min/max and idle are divided by eight before being sent to esc (i.e. 1000 = 125, 2000 = 250).</string>
</property>
</widget>
</item>
<item row="1" column="7">
<widget class="QComboBox" name="cb_outputRate6">
<property name="enabled">
<bool>false</bool>
</property>
<property name="sizePolicy">
<sizepolicy hsizetype="Minimum" vsizetype="Fixed">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="minimumSize">
<size>
<width>0</width>
<height>20</height>
</size>
</property>
<property name="maximumSize">
<size>
<width>16777215</width>
<height>16777215</height>
</size>
</property>
<property name="toolTip">
<string>Setup PWM rate here: usual value is 490 Hz for multirotor airframes. OneShot and OneShot125 does not use this value</string>
</property>
<property name="styleSheet">
<string notr="true"/>
</property>
<item>
<property name="text">
<string>50</string>
</property>
</item>
<item>
<property name="text">
<string>60</string>
</property>
</item>
<item>
<property name="text">
<string>125</string>
</property>
</item>
<item>
<property name="text">
<string>165</string>
</property>
</item>
<item>
<property name="text">
<string>270</string>
</property>
</item>
<item>
<property name="text">
<string>330</string>
</property>
</item>
<item>
<property name="text">
<string>400</string>
</property>
</item>
<item>
<property name="text">
<string>490</string>
</property>
</item>
</widget>
</item>
<item row="0" column="7">
<widget class="QLabel" name="chBank6">
<property name="text">
<string>-</string>
</property>
<property name="alignment">
<set>Qt::AlignCenter</set>
</property>
</widget>
</item>
<item row="2" column="7">
<widget class="QComboBox" name="cb_outputMode6">
<property name="enabled">
<bool>false</bool>
</property>
<property name="sizePolicy">
<sizepolicy hsizetype="Minimum" vsizetype="Fixed">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="minimumSize">
<size>
<width>0</width>
<height>20</height>
</size>
</property>
<property name="maximumSize">
<size>
<width>16777215</width>
<height>16777215</height>
</size>
</property>
<property name="toolTip">
<string>Setup output mode. Use PWM or OneShot with Standard ESCs.\nSeveral other ESCs like BLHeli 13+ can use the more advanced OneShot125.\nWhen using OneShot125 all values set in min/max and idle are divided by eight before being sent to esc (i.e. 1000 = 125, 2000 = 250).</string>
</property>
</widget>
</item>
</layout>
</widget>
</item>
</layout>
</widget> </widget>
</item> </item>
<item row="2" column="5"> <item>
<widget class="QComboBox" name="cb_outputMode4"> <widget class="QFrame" name="gvFrame">
<property name="enabled">
<bool>false</bool>
</property>
<property name="sizePolicy"> <property name="sizePolicy">
<sizepolicy hsizetype="Minimum" vsizetype="Fixed"> <sizepolicy hsizetype="Preferred" vsizetype="Preferred">
<horstretch>0</horstretch> <horstretch>0</horstretch>
<verstretch>0</verstretch> <verstretch>0</verstretch>
</sizepolicy> </sizepolicy>
</property> </property>
<property name="minimumSize"> <property name="frameShape">
<size> <enum>QFrame::NoFrame</enum>
<width>0</width>
<height>20</height>
</size>
</property> </property>
<property name="maximumSize"> <property name="frameShadow">
<size> <enum>QFrame::Raised</enum>
<width>70</width>
<height>16777215</height>
</size>
</property>
<property name="toolTip">
<string>Setup output mode. Use PWM or OneShot with Standard ESCs.\nSeveral other ESCs like BLHeli 13+ can use the more advanced OneShot125.\nWhen using OneShot125 all values set in min/max and idle are divided by eight before being sent to esc (i.e. 1000 = 125, 2000 = 250).</string>
</property> </property>
<layout class="QHBoxLayout" name="horizontalLayout_2">
<property name="leftMargin">
<number>0</number>
</property>
<property name="topMargin">
<number>0</number>
</property>
<property name="rightMargin">
<number>0</number>
</property>
<property name="bottomMargin">
<number>0</number>
</property>
<item>
<spacer name="horizontalSpacer_2">
<property name="orientation">
<enum>Qt::Horizontal</enum>
</property>
<property name="sizeHint" stdset="0">
<size>
<width>40</width>
<height>20</height>
</size>
</property>
</spacer>
</item>
<item alignment="Qt::AlignTop">
<widget class="QGraphicsView" name="gvWarning">
<property name="minimumSize">
<size>
<width>32</width>
<height>32</height>
</size>
</property>
<property name="maximumSize">
<size>
<width>32</width>
<height>32</height>
</size>
</property>
<property name="styleSheet">
<string notr="true">background: transparent</string>
</property>
<property name="frameShape">
<enum>QFrame::NoFrame</enum>
</property>
<property name="alignment">
<set>Qt::AlignCenter</set>
</property>
<property name="renderHints">
<set>QPainter::HighQualityAntialiasing</set>
</property>
</widget>
</item>
<item>
<widget class="QLabel" name="txtWarning">
<property name="minimumSize">
<size>
<width>0</width>
<height>0</height>
</size>
</property>
<property name="text">
<string/>
</property>
</widget>
</item>
<item>
<spacer name="horizontalSpacer_3">
<property name="orientation">
<enum>Qt::Horizontal</enum>
</property>
<property name="sizeHint" stdset="0">
<size>
<width>40</width>
<height>20</height>
</size>
</property>
</spacer>
</item>
</layout>
</widget> </widget>
</item> </item>
<item row="1" column="1">
<widget class="QLabel" name="label_3">
<property name="sizePolicy">
<sizepolicy hsizetype="Minimum" vsizetype="Preferred">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="minimumSize">
<size>
<width>0</width>
<height>20</height>
</size>
</property>
<property name="text">
<string>Update rate:</string>
</property>
<property name="alignment">
<set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
</property>
</widget>
</item>
<item row="1" column="7">
<widget class="QComboBox" name="cb_outputRate6">
<property name="enabled">
<bool>false</bool>
</property>
<property name="sizePolicy">
<sizepolicy hsizetype="Minimum" vsizetype="Fixed">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="minimumSize">
<size>
<width>0</width>
<height>20</height>
</size>
</property>
<property name="maximumSize">
<size>
<width>70</width>
<height>16777215</height>
</size>
</property>
<property name="toolTip">
<string>Setup PWM rate here: usual value is 490 Hz for multirotor airframes. OneShot and OneShot125 does not use this value</string>
</property>
<property name="styleSheet">
<string notr="true"/>
</property>
<item>
<property name="text">
<string>50</string>
</property>
</item>
<item>
<property name="text">
<string>60</string>
</property>
</item>
<item>
<property name="text">
<string>125</string>
</property>
</item>
<item>
<property name="text">
<string>165</string>
</property>
</item>
<item>
<property name="text">
<string>270</string>
</property>
</item>
<item>
<property name="text">
<string>330</string>
</property>
</item>
<item>
<property name="text">
<string>400</string>
</property>
</item>
<item>
<property name="text">
<string>490</string>
</property>
</item>
</widget>
</item>
<item row="0" column="7">
<widget class="QLabel" name="chBank6">
<property name="text">
<string>-</string>
</property>
<property name="alignment">
<set>Qt::AlignCenter</set>
</property>
</widget>
</item>
<item row="2" column="7">
<widget class="QComboBox" name="cb_outputMode6">
<property name="enabled">
<bool>false</bool>
</property>
<property name="sizePolicy">
<sizepolicy hsizetype="Minimum" vsizetype="Fixed">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="minimumSize">
<size>
<width>0</width>
<height>20</height>
</size>
</property>
<property name="maximumSize">
<size>
<width>70</width>
<height>16777215</height>
</size>
</property>
<property name="toolTip">
<string>Setup output mode. Use PWM or OneShot with Standard ESCs.\nSeveral other ESCs like BLHeli 13+ can use the more advanced OneShot125.\nWhen using OneShot125 all values set in min/max and idle are divided by eight before being sent to esc (i.e. 1000 = 125, 2000 = 250).</string>
</property>
</widget>
</item>
<item row="0" column="0" rowspan="3">
<layout class="QHBoxLayout" name="_2">
<property name="spacing">
<number>0</number>
</property>
<item>
<widget class="QGraphicsView" name="gvWarning">
<property name="minimumSize">
<size>
<width>32</width>
<height>32</height>
</size>
</property>
<property name="maximumSize">
<size>
<width>32</width>
<height>32</height>
</size>
</property>
<property name="styleSheet">
<string notr="true">background: transparent</string>
</property>
<property name="frameShape">
<enum>QFrame::NoFrame</enum>
</property>
<property name="alignment">
<set>Qt::AlignCenter</set>
</property>
<property name="renderHints">
<set>QPainter::HighQualityAntialiasing</set>
</property>
</widget>
</item>
<item>
<widget class="QTextEdit" name="txtWarning">
<property name="sizePolicy">
<sizepolicy hsizetype="MinimumExpanding" vsizetype="MinimumExpanding">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="minimumSize">
<size>
<width>200</width>
<height>50</height>
</size>
</property>
<property name="maximumSize">
<size>
<width>16777215</width>
<height>90</height>
</size>
</property>
<property name="font">
<font>
<pointsize>10</pointsize>
<weight>50</weight>
<bold>false</bold>
</font>
</property>
<property name="toolTip">
<string>Calibration status</string>
</property>
<property name="styleSheet">
<string notr="true">background-color: transparent;</string>
</property>
<property name="frameShape">
<enum>QFrame::NoFrame</enum>
</property>
<property name="horizontalScrollBarPolicy">
<enum>Qt::ScrollBarAlwaysOff</enum>
</property>
<property name="sizeAdjustPolicy">
<enum>QAbstractScrollArea::AdjustIgnored</enum>
</property>
<property name="textInteractionFlags">
<set>Qt::NoTextInteraction</set>
</property>
</widget>
</item>
</layout>
</item>
</layout> </layout>
</widget> </widget>
</item> </item>