cfclient 2017.4__py3-none-any.whl → 2025.12.1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- cfclient/__init__.py +16 -11
- cfclient/configs/config.json +4 -3
- cfclient/configs/input/Generic_OS_X.json +1 -0
- cfclient/configs/input/Joystick.json +1 -0
- cfclient/configs/input/PS3_Mode_1.json +1 -0
- cfclient/configs/input/PS3_Mode_2.json +1 -0
- cfclient/configs/input/PS3_Mode_3.json +1 -0
- cfclient/configs/input/PS4_Mode_1.json +1 -0
- cfclient/configs/input/PS4_Mode_2.json +1 -0
- cfclient/configs/input/PS4_shoulder_btns_yaw.json +1 -0
- cfclient/configs/input/xbox360_mode1.json +1 -0
- cfclient/configs/log/PID_tuning/Attitude.json +46 -0
- cfclient/configs/log/PID_tuning/Attitude_rate.json +46 -0
- cfclient/configs/log/PID_tuning/Position.json +46 -0
- cfclient/configs/log/PID_tuning/Velocity.json +46 -0
- cfclient/configs/log/PID_tuning_components/Pitch.json +22 -0
- cfclient/configs/log/PID_tuning_components/Pitch_rate.json +22 -0
- cfclient/configs/log/PID_tuning_components/Position_x.json +22 -0
- cfclient/configs/log/PID_tuning_components/Position_y.json +22 -0
- cfclient/configs/log/PID_tuning_components/Position_z.json +22 -0
- cfclient/configs/log/PID_tuning_components/Roll.json +22 -0
- cfclient/configs/log/PID_tuning_components/Roll_rate.json +22 -0
- cfclient/configs/log/PID_tuning_components/Velocity_x.json +22 -0
- cfclient/configs/log/PID_tuning_components/Velocity_y.json +22 -0
- cfclient/configs/log/PID_tuning_components/Velocity_z.json +22 -0
- cfclient/configs/log/PID_tuning_components/Yaw.json +22 -0
- cfclient/configs/log/PID_tuning_components/Yaw_rate.json +22 -0
- cfclient/gui.py +44 -9
- cfclient/headless.py +3 -12
- cfclient/resources/log_param_doc.json +1 -0
- cfclient/ui/connectivity_manager.py +198 -0
- cfclient/ui/dialogs/about.py +53 -36
- cfclient/ui/dialogs/about.ui +23 -3
- cfclient/ui/dialogs/anchor_position_dialog.py +252 -0
- cfclient/ui/dialogs/anchor_position_dialog.ui +138 -0
- cfclient/ui/dialogs/basestation_mode_dialog.py +185 -0
- cfclient/ui/dialogs/basestation_mode_dialog.ui +186 -0
- cfclient/ui/dialogs/bootloader.py +448 -85
- cfclient/ui/dialogs/bootloader.ui +387 -134
- cfclient/ui/dialogs/cf2config.py +4 -4
- cfclient/ui/dialogs/cf2config.ui +3 -4
- cfclient/ui/dialogs/inputconfigdialogue.py +24 -19
- cfclient/ui/dialogs/inputconfigdialogue.ui +53 -30
- cfclient/ui/dialogs/lighthouse_bs_geometry_dialog.py +220 -0
- cfclient/ui/dialogs/lighthouse_bs_geometry_dialog.ui +110 -0
- cfclient/ui/dialogs/lighthouse_system_type_dialog.py +93 -0
- cfclient/ui/dialogs/lighthouse_system_type_dialog.ui +121 -0
- cfclient/ui/dialogs/logconfigdialogue.py +401 -101
- cfclient/ui/dialogs/logconfigdialogue.ui +117 -72
- cfclient/ui/icons/bl.webp +0 -0
- cfclient/ui/icons/bolt.webp +0 -0
- cfclient/ui/icons/cf21.webp +0 -0
- cfclient/ui/icons/checkmark_black.png +0 -0
- cfclient/ui/icons/checkmark_white.png +0 -0
- cfclient/ui/icons/create.png +0 -0
- cfclient/ui/icons/delete.png +0 -0
- cfclient/ui/icons/flapper.webp +0 -0
- cfclient/ui/icons/tag.webp +0 -0
- cfclient/ui/main.py +328 -258
- cfclient/ui/main.ui +184 -80
- cfclient/ui/pluginhelper.py +7 -1
- cfclient/ui/pose_logger.py +116 -0
- cfclient/ui/tab_toolbox.py +208 -0
- cfclient/ui/tabs/ColorLEDTab.py +752 -0
- cfclient/ui/tabs/ConsoleTab.py +48 -13
- cfclient/ui/{toolboxes → tabs}/CrtpSharkToolbox.py +19 -34
- cfclient/ui/tabs/ExampleTab.py +9 -16
- cfclient/ui/tabs/FlightTab.py +437 -325
- cfclient/ui/tabs/GpsTab.py +14 -20
- cfclient/ui/tabs/LEDRingTab.py +277 -0
- cfclient/ui/tabs/LogBlockDebugTab.py +20 -27
- cfclient/ui/tabs/LogBlockTab.py +35 -35
- cfclient/ui/tabs/LogClientTab.py +85 -0
- cfclient/ui/tabs/LogTab.py +50 -27
- cfclient/ui/tabs/ParamTab.py +443 -57
- cfclient/ui/tabs/PlotTab.py +23 -25
- cfclient/ui/tabs/TuningTab.py +292 -0
- cfclient/ui/tabs/__init__.py +12 -2
- cfclient/ui/tabs/colorLEDTab.ui +624 -0
- cfclient/ui/tabs/consoleTab.ui +46 -0
- cfclient/ui/tabs/flightActionContainer.ui +103 -0
- cfclient/ui/tabs/flightTab.ui +724 -237
- cfclient/ui/tabs/{ledTab.ui → ledRingTab.ui} +63 -46
- cfclient/ui/tabs/lighthouse_tab.py +714 -0
- cfclient/ui/tabs/lighthouse_tab.ui +430 -0
- cfclient/ui/tabs/locopositioning_tab.py +606 -389
- cfclient/ui/tabs/locopositioning_tab.ui +370 -253
- cfclient/ui/tabs/logClientTab.ui +52 -0
- cfclient/ui/tabs/logTab.ui +1 -1
- cfclient/ui/tabs/paramTab.ui +204 -3
- cfclient/ui/tabs/tuningTab.ui +773 -0
- cfclient/ui/widgets/ai.py +37 -39
- cfclient/ui/widgets/hexspinbox.py +16 -10
- cfclient/ui/widgets/plotter.ui +39 -47
- cfclient/ui/widgets/plotwidget.py +57 -22
- cfclient/ui/widgets/super_slider.py +112 -0
- cfclient/ui/wizards/__init__.py +0 -0
- cfclient/ui/wizards/bslh_1.png +0 -0
- cfclient/ui/wizards/bslh_2.png +0 -0
- cfclient/ui/wizards/bslh_3.png +0 -0
- cfclient/ui/wizards/bslh_4.png +0 -0
- cfclient/ui/wizards/bslh_5.png +0 -0
- cfclient/ui/wizards/lighthouse_geo_bs_estimation_wizard.py +465 -0
- cfclient/utils/config_manager.py +5 -4
- cfclient/utils/input/__init__.py +77 -19
- cfclient/utils/input/inputinterfaces/wiimote.py +2 -2
- cfclient/utils/input/inputreaderinterface.py +17 -7
- cfclient/utils/input/inputreaders/__init__.py +17 -0
- cfclient/utils/logconfigreader.py +245 -25
- cfclient/utils/logdatawriter.py +3 -1
- cfclient/utils/periodictimer.py +1 -1
- cfclient/utils/ui.py +336 -0
- cfclient/utils/zmq_led_driver.py +5 -0
- cfclient/utils/zmq_param.py +6 -0
- cfclient/version.py +34 -1
- cfclient-2025.12.1.dist-info/METADATA +70 -0
- cfclient-2025.12.1.dist-info/RECORD +152 -0
- {cfclient-2017.4.dist-info → cfclient-2025.12.1.dist-info}/WHEEL +1 -1
- {cfclient-2017.4.dist-info → cfclient-2025.12.1.dist-info}/entry_points.txt +0 -1
- cfclient-2025.12.1.dist-info/licenses/LICENSE.txt +350 -0
- {cfclient-2017.4.dist-info → cfclient-2025.12.1.dist-info}/top_level.txt +1 -0
- cfconfig/Makefile +51 -0
- cfconfig/configblock.py +111 -0
- cfloader/__init__.py +41 -55
- cfzmq/__init__.py +22 -14
- cfclient/ui/dialogs/cf1config.py +0 -265
- cfclient/ui/dialogs/cf1config.ui +0 -260
- cfclient/ui/tab.py +0 -96
- cfclient/ui/tabs/LEDTab.py +0 -169
- cfclient/ui/toolboxes/ConsoleToolbox.py +0 -69
- cfclient/ui/toolboxes/DebugDriverToolbox.py +0 -107
- cfclient/ui/toolboxes/__init__.py +0 -45
- cfclient/ui/toolboxes/consoleToolbox.ui +0 -62
- cfclient/ui/toolboxes/debugDriverToolbox.ui +0 -86
- cfclient-2017.4.dist-info/DESCRIPTION.rst +0 -3
- cfclient-2017.4.dist-info/METADATA +0 -22
- cfclient-2017.4.dist-info/RECORD +0 -104
- cfclient-2017.4.dist-info/metadata.json +0 -1
- /cfclient/{icon-256.png → ui/icons/icon-256.png} +0 -0
- /cfclient/ui/{toolboxes → tabs}/crtpSharkToolbox.ui +0 -0
|
@@ -6,8 +6,8 @@
|
|
|
6
6
|
<rect>
|
|
7
7
|
<x>0</x>
|
|
8
8
|
<y>0</y>
|
|
9
|
-
<width>
|
|
10
|
-
<height>
|
|
9
|
+
<width>1348</width>
|
|
10
|
+
<height>770</height>
|
|
11
11
|
</rect>
|
|
12
12
|
</property>
|
|
13
13
|
<property name="windowTitle">
|
|
@@ -15,319 +15,436 @@
|
|
|
15
15
|
</property>
|
|
16
16
|
<layout class="QHBoxLayout" name="horizontalLayout">
|
|
17
17
|
<item>
|
|
18
|
-
<layout class="QGridLayout" name="gridLayout" rowstretch="0,0" columnstretch="0
|
|
18
|
+
<layout class="QGridLayout" name="gridLayout" rowstretch="0,0" columnstretch="0">
|
|
19
19
|
<property name="leftMargin">
|
|
20
20
|
<number>0</number>
|
|
21
21
|
</property>
|
|
22
|
-
<item row="1" column="0">
|
|
23
|
-
<layout class="QVBoxLayout" name="_plot_bottom_left_layout"/>
|
|
24
|
-
</item>
|
|
25
22
|
<item row="0" column="0">
|
|
26
|
-
<layout class="QVBoxLayout" name="
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
23
|
+
<layout class="QVBoxLayout" name="_inputLayout" stretch="0">
|
|
24
|
+
<property name="spacing">
|
|
25
|
+
<number>-1</number>
|
|
26
|
+
</property>
|
|
30
27
|
<item>
|
|
31
|
-
<
|
|
32
|
-
<property name="
|
|
33
|
-
<
|
|
34
|
-
</property>
|
|
35
|
-
<layout class="QVBoxLayout" name="verticalLayout_2">
|
|
36
|
-
<item>
|
|
37
|
-
<widget class="QRadioButton" name="_estimated_postion_button">
|
|
38
|
-
<property name="text">
|
|
39
|
-
<string>Position estimate</string>
|
|
40
|
-
</property>
|
|
41
|
-
<property name="checked">
|
|
42
|
-
<bool>true</bool>
|
|
43
|
-
</property>
|
|
44
|
-
</widget>
|
|
45
|
-
</item>
|
|
46
|
-
<item>
|
|
47
|
-
<widget class="QRadioButton" name="_id_anchor_button">
|
|
48
|
-
<property name="text">
|
|
49
|
-
<string>Anchor identification</string>
|
|
50
|
-
</property>
|
|
51
|
-
</widget>
|
|
52
|
-
</item>
|
|
53
|
-
</layout>
|
|
54
|
-
</widget>
|
|
55
|
-
</item>
|
|
56
|
-
<item>
|
|
57
|
-
<widget class="QGroupBox" name="groupBox">
|
|
58
|
-
<property name="enabled">
|
|
59
|
-
<bool>true</bool>
|
|
60
|
-
</property>
|
|
61
|
-
<property name="minimumSize">
|
|
62
|
-
<size>
|
|
63
|
-
<width>0</width>
|
|
64
|
-
<height>13</height>
|
|
65
|
-
</size>
|
|
28
|
+
<layout class="QHBoxLayout" name="horizontalLayout_8">
|
|
29
|
+
<property name="sizeConstraint">
|
|
30
|
+
<enum>QLayout::SetDefaultConstraint</enum>
|
|
66
31
|
</property>
|
|
67
|
-
<
|
|
68
|
-
<
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
32
|
+
<item>
|
|
33
|
+
<widget class="QGroupBox" name="groupBox_2">
|
|
34
|
+
<property name="sizePolicy">
|
|
35
|
+
<sizepolicy hsizetype="Maximum" vsizetype="Maximum">
|
|
36
|
+
<horstretch>0</horstretch>
|
|
37
|
+
<verstretch>0</verstretch>
|
|
38
|
+
</sizepolicy>
|
|
39
|
+
</property>
|
|
40
|
+
<property name="title">
|
|
41
|
+
<string>Graph settings</string>
|
|
42
|
+
</property>
|
|
43
|
+
<property name="alignment">
|
|
44
|
+
<set>Qt::AlignLeading|Qt::AlignLeft|Qt::AlignTop</set>
|
|
45
|
+
</property>
|
|
46
|
+
<layout class="QVBoxLayout" name="verticalLayout_2">
|
|
73
47
|
<item>
|
|
74
|
-
<layout class="QHBoxLayout" name="
|
|
75
|
-
<item>
|
|
76
|
-
<
|
|
77
|
-
<
|
|
78
|
-
<
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
48
|
+
<layout class="QHBoxLayout" name="horizontalLayout_3">
|
|
49
|
+
<item>
|
|
50
|
+
<layout class="QVBoxLayout" name="verticalLayout_3">
|
|
51
|
+
<item>
|
|
52
|
+
<widget class="QRadioButton" name="_estimated_postion_button">
|
|
53
|
+
<property name="text">
|
|
54
|
+
<string>Position estimate</string>
|
|
55
|
+
</property>
|
|
56
|
+
<property name="checked">
|
|
57
|
+
<bool>true</bool>
|
|
58
|
+
</property>
|
|
59
|
+
</widget>
|
|
60
|
+
</item>
|
|
61
|
+
<item>
|
|
62
|
+
<widget class="QRadioButton" name="_id_anchor_button">
|
|
63
|
+
<property name="text">
|
|
64
|
+
<string>Anchor identification</string>
|
|
65
|
+
</property>
|
|
66
|
+
</widget>
|
|
67
|
+
</item>
|
|
68
|
+
<item>
|
|
69
|
+
<widget class="QPushButton" name="_clear_anchors_button">
|
|
70
|
+
<property name="text">
|
|
71
|
+
<string>Clear</string>
|
|
72
|
+
</property>
|
|
73
|
+
</widget>
|
|
74
|
+
</item>
|
|
75
|
+
<item>
|
|
76
|
+
<spacer name="verticalSpacer_2">
|
|
77
|
+
<property name="orientation">
|
|
78
|
+
<enum>Qt::Vertical</enum>
|
|
79
|
+
</property>
|
|
80
|
+
<property name="sizeHint" stdset="0">
|
|
81
|
+
<size>
|
|
82
|
+
<width>20</width>
|
|
83
|
+
<height>40</height>
|
|
84
|
+
</size>
|
|
85
|
+
</property>
|
|
86
|
+
</spacer>
|
|
87
|
+
</item>
|
|
88
|
+
</layout>
|
|
90
89
|
</item>
|
|
91
90
|
</layout>
|
|
92
91
|
</item>
|
|
92
|
+
</layout>
|
|
93
|
+
</widget>
|
|
94
|
+
</item>
|
|
95
|
+
<item>
|
|
96
|
+
<widget class="QGroupBox" name="groupBox_4">
|
|
97
|
+
<property name="sizePolicy">
|
|
98
|
+
<sizepolicy hsizetype="Maximum" vsizetype="Maximum">
|
|
99
|
+
<horstretch>0</horstretch>
|
|
100
|
+
<verstretch>0</verstretch>
|
|
101
|
+
</sizepolicy>
|
|
102
|
+
</property>
|
|
103
|
+
<property name="title">
|
|
104
|
+
<string>Crazyflie status</string>
|
|
105
|
+
</property>
|
|
106
|
+
<property name="alignment">
|
|
107
|
+
<set>Qt::AlignLeading|Qt::AlignLeft|Qt::AlignTop</set>
|
|
108
|
+
</property>
|
|
109
|
+
<layout class="QVBoxLayout" name="verticalLayout_6" stretch="0">
|
|
93
110
|
<item>
|
|
94
|
-
<layout class="QHBoxLayout" name="
|
|
111
|
+
<layout class="QHBoxLayout" name="horizontalLayout_11">
|
|
112
|
+
<property name="sizeConstraint">
|
|
113
|
+
<enum>QLayout::SetDefaultConstraint</enum>
|
|
114
|
+
</property>
|
|
95
115
|
<item>
|
|
96
|
-
<
|
|
97
|
-
<
|
|
98
|
-
<
|
|
116
|
+
<layout class="QVBoxLayout" name="verticalLayout_8">
|
|
117
|
+
<item>
|
|
118
|
+
<layout class="QHBoxLayout" name="horizontalLayout_7">
|
|
119
|
+
<item>
|
|
120
|
+
<widget class="QLabel" name="label_7">
|
|
121
|
+
<property name="text">
|
|
122
|
+
<string>Position</string>
|
|
123
|
+
</property>
|
|
124
|
+
</widget>
|
|
125
|
+
</item>
|
|
126
|
+
<item>
|
|
127
|
+
<widget class="QLabel" name="_status_position">
|
|
128
|
+
<property name="minimumSize">
|
|
129
|
+
<size>
|
|
130
|
+
<width>150</width>
|
|
131
|
+
<height>0</height>
|
|
132
|
+
</size>
|
|
133
|
+
</property>
|
|
134
|
+
<property name="frameShape">
|
|
135
|
+
<enum>QFrame::NoFrame</enum>
|
|
136
|
+
</property>
|
|
137
|
+
<property name="text">
|
|
138
|
+
<string>(0.0 , 0.0 , 0.0)</string>
|
|
139
|
+
</property>
|
|
140
|
+
</widget>
|
|
141
|
+
</item>
|
|
142
|
+
<item>
|
|
143
|
+
<spacer name="horizontalSpacer_3">
|
|
144
|
+
<property name="orientation">
|
|
145
|
+
<enum>Qt::Horizontal</enum>
|
|
146
|
+
</property>
|
|
147
|
+
<property name="sizeHint" stdset="0">
|
|
148
|
+
<size>
|
|
149
|
+
<width>40</width>
|
|
150
|
+
<height>20</height>
|
|
151
|
+
</size>
|
|
152
|
+
</property>
|
|
153
|
+
</spacer>
|
|
154
|
+
</item>
|
|
155
|
+
</layout>
|
|
156
|
+
</item>
|
|
157
|
+
<item>
|
|
158
|
+
<layout class="QHBoxLayout" name="horizontalLayout_6">
|
|
159
|
+
<item>
|
|
160
|
+
<widget class="QLabel" name="label_8">
|
|
161
|
+
<property name="text">
|
|
162
|
+
<string>Anchors</string>
|
|
163
|
+
</property>
|
|
164
|
+
</widget>
|
|
165
|
+
</item>
|
|
166
|
+
</layout>
|
|
167
|
+
</item>
|
|
168
|
+
<item>
|
|
169
|
+
<layout class="QHBoxLayout" name="horizontalLayout_4">
|
|
170
|
+
<item>
|
|
171
|
+
<layout class="QGridLayout" name="_anchor_stats_container" rowstretch="0">
|
|
172
|
+
<property name="sizeConstraint">
|
|
173
|
+
<enum>QLayout::SetMinimumSize</enum>
|
|
174
|
+
</property>
|
|
175
|
+
<property name="leftMargin">
|
|
176
|
+
<number>0</number>
|
|
177
|
+
</property>
|
|
178
|
+
<property name="spacing">
|
|
179
|
+
<number>2</number>
|
|
180
|
+
</property>
|
|
181
|
+
</layout>
|
|
182
|
+
</item>
|
|
183
|
+
</layout>
|
|
184
|
+
</item>
|
|
185
|
+
<item>
|
|
186
|
+
<spacer name="verticalSpacer_4">
|
|
187
|
+
<property name="orientation">
|
|
188
|
+
<enum>Qt::Vertical</enum>
|
|
189
|
+
</property>
|
|
190
|
+
<property name="sizeHint" stdset="0">
|
|
191
|
+
<size>
|
|
192
|
+
<width>20</width>
|
|
193
|
+
<height>40</height>
|
|
194
|
+
</size>
|
|
195
|
+
</property>
|
|
196
|
+
</spacer>
|
|
197
|
+
</item>
|
|
198
|
+
</layout>
|
|
199
|
+
</item>
|
|
200
|
+
<item>
|
|
201
|
+
<layout class="QVBoxLayout" name="verticalLayout_10">
|
|
202
|
+
<property name="spacing">
|
|
203
|
+
<number>0</number>
|
|
99
204
|
</property>
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
205
|
+
<property name="sizeConstraint">
|
|
206
|
+
<enum>QLayout::SetDefaultConstraint</enum>
|
|
207
|
+
</property>
|
|
208
|
+
<item>
|
|
209
|
+
<layout class="QHBoxLayout" name="_cf_auto_container">
|
|
210
|
+
<item>
|
|
211
|
+
<widget class="QRadioButton" name="_mode_auto">
|
|
212
|
+
<property name="text">
|
|
213
|
+
<string>Auto</string>
|
|
214
|
+
</property>
|
|
215
|
+
</widget>
|
|
216
|
+
</item>
|
|
217
|
+
</layout>
|
|
218
|
+
</item>
|
|
219
|
+
<item>
|
|
220
|
+
<layout class="QHBoxLayout" name="_cf_twr_container">
|
|
221
|
+
<property name="spacing">
|
|
222
|
+
<number>-1</number>
|
|
223
|
+
</property>
|
|
224
|
+
<item>
|
|
225
|
+
<widget class="QRadioButton" name="_mode_twr">
|
|
226
|
+
<property name="text">
|
|
227
|
+
<string>TWR</string>
|
|
228
|
+
</property>
|
|
229
|
+
</widget>
|
|
230
|
+
</item>
|
|
231
|
+
<item>
|
|
232
|
+
<widget class="QLabel" name="_state_twr">
|
|
233
|
+
<property name="sizePolicy">
|
|
234
|
+
<sizepolicy hsizetype="Preferred" vsizetype="Maximum">
|
|
235
|
+
<horstretch>0</horstretch>
|
|
236
|
+
<verstretch>0</verstretch>
|
|
237
|
+
</sizepolicy>
|
|
238
|
+
</property>
|
|
239
|
+
<property name="minimumSize">
|
|
240
|
+
<size>
|
|
241
|
+
<width>20</width>
|
|
242
|
+
<height>0</height>
|
|
243
|
+
</size>
|
|
244
|
+
</property>
|
|
245
|
+
<property name="maximumSize">
|
|
246
|
+
<size>
|
|
247
|
+
<width>20</width>
|
|
248
|
+
<height>16777215</height>
|
|
249
|
+
</size>
|
|
250
|
+
</property>
|
|
251
|
+
<property name="frameShape">
|
|
252
|
+
<enum>QFrame::Box</enum>
|
|
253
|
+
</property>
|
|
254
|
+
<property name="text">
|
|
255
|
+
<string/>
|
|
256
|
+
</property>
|
|
257
|
+
</widget>
|
|
258
|
+
</item>
|
|
259
|
+
</layout>
|
|
260
|
+
</item>
|
|
261
|
+
<item>
|
|
262
|
+
<layout class="QHBoxLayout" name="_cf_tdoa2_container">
|
|
263
|
+
<item>
|
|
264
|
+
<widget class="QRadioButton" name="_mode_tdoa2">
|
|
265
|
+
<property name="text">
|
|
266
|
+
<string>TDoA 2</string>
|
|
267
|
+
</property>
|
|
268
|
+
</widget>
|
|
269
|
+
</item>
|
|
270
|
+
<item>
|
|
271
|
+
<widget class="QLabel" name="_state_tdoa2">
|
|
272
|
+
<property name="sizePolicy">
|
|
273
|
+
<sizepolicy hsizetype="Preferred" vsizetype="Maximum">
|
|
274
|
+
<horstretch>0</horstretch>
|
|
275
|
+
<verstretch>0</verstretch>
|
|
276
|
+
</sizepolicy>
|
|
277
|
+
</property>
|
|
278
|
+
<property name="minimumSize">
|
|
279
|
+
<size>
|
|
280
|
+
<width>20</width>
|
|
281
|
+
<height>0</height>
|
|
282
|
+
</size>
|
|
283
|
+
</property>
|
|
284
|
+
<property name="maximumSize">
|
|
285
|
+
<size>
|
|
286
|
+
<width>20</width>
|
|
287
|
+
<height>16777215</height>
|
|
288
|
+
</size>
|
|
289
|
+
</property>
|
|
290
|
+
<property name="frameShape">
|
|
291
|
+
<enum>QFrame::Box</enum>
|
|
292
|
+
</property>
|
|
293
|
+
<property name="text">
|
|
294
|
+
<string/>
|
|
295
|
+
</property>
|
|
296
|
+
</widget>
|
|
297
|
+
</item>
|
|
298
|
+
</layout>
|
|
299
|
+
</item>
|
|
300
|
+
<item>
|
|
301
|
+
<layout class="QHBoxLayout" name="_cf_tdoa3_container">
|
|
302
|
+
<item>
|
|
303
|
+
<widget class="QRadioButton" name="_mode_tdoa3">
|
|
304
|
+
<property name="text">
|
|
305
|
+
<string>TDoA 3</string>
|
|
306
|
+
</property>
|
|
307
|
+
</widget>
|
|
308
|
+
</item>
|
|
309
|
+
<item>
|
|
310
|
+
<widget class="QLabel" name="_state_tdoa3">
|
|
311
|
+
<property name="sizePolicy">
|
|
312
|
+
<sizepolicy hsizetype="Preferred" vsizetype="Maximum">
|
|
313
|
+
<horstretch>0</horstretch>
|
|
314
|
+
<verstretch>0</verstretch>
|
|
315
|
+
</sizepolicy>
|
|
316
|
+
</property>
|
|
317
|
+
<property name="minimumSize">
|
|
318
|
+
<size>
|
|
319
|
+
<width>20</width>
|
|
320
|
+
<height>0</height>
|
|
321
|
+
</size>
|
|
322
|
+
</property>
|
|
323
|
+
<property name="maximumSize">
|
|
324
|
+
<size>
|
|
325
|
+
<width>20</width>
|
|
326
|
+
<height>16777215</height>
|
|
327
|
+
</size>
|
|
328
|
+
</property>
|
|
329
|
+
<property name="frameShape">
|
|
330
|
+
<enum>QFrame::Box</enum>
|
|
331
|
+
</property>
|
|
332
|
+
<property name="text">
|
|
333
|
+
<string/>
|
|
334
|
+
</property>
|
|
335
|
+
</widget>
|
|
336
|
+
</item>
|
|
337
|
+
</layout>
|
|
338
|
+
</item>
|
|
339
|
+
</layout>
|
|
110
340
|
</item>
|
|
111
341
|
</layout>
|
|
112
342
|
</item>
|
|
113
343
|
</layout>
|
|
114
|
-
</
|
|
115
|
-
|
|
116
|
-
|
|
344
|
+
</widget>
|
|
345
|
+
</item>
|
|
346
|
+
<item>
|
|
347
|
+
<widget class="QGroupBox" name="groupBox">
|
|
348
|
+
<property name="enabled">
|
|
349
|
+
<bool>true</bool>
|
|
350
|
+
</property>
|
|
351
|
+
<property name="sizePolicy">
|
|
352
|
+
<sizepolicy hsizetype="Maximum" vsizetype="Maximum">
|
|
353
|
+
<horstretch>0</horstretch>
|
|
354
|
+
<verstretch>0</verstretch>
|
|
355
|
+
</sizepolicy>
|
|
356
|
+
</property>
|
|
357
|
+
<property name="minimumSize">
|
|
358
|
+
<size>
|
|
359
|
+
<width>0</width>
|
|
360
|
+
<height>0</height>
|
|
361
|
+
</size>
|
|
362
|
+
</property>
|
|
363
|
+
<property name="title">
|
|
364
|
+
<string>Anchor status</string>
|
|
365
|
+
</property>
|
|
366
|
+
<layout class="QVBoxLayout" name="verticalLayout">
|
|
117
367
|
<item>
|
|
118
|
-
<layout class="QHBoxLayout" name="
|
|
368
|
+
<layout class="QHBoxLayout" name="horizontalLayout_2">
|
|
119
369
|
<item>
|
|
120
|
-
<widget class="QLabel" name="
|
|
370
|
+
<widget class="QLabel" name="label">
|
|
121
371
|
<property name="text">
|
|
122
|
-
<string>
|
|
372
|
+
<string>Change mode:</string>
|
|
123
373
|
</property>
|
|
124
374
|
</widget>
|
|
125
375
|
</item>
|
|
126
376
|
<item>
|
|
127
|
-
<widget class="
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
<widget class="QDoubleSpinBox" name="spin_a2y"/>
|
|
131
|
-
</item>
|
|
132
|
-
<item>
|
|
133
|
-
<widget class="QDoubleSpinBox" name="spin_a2z"/>
|
|
134
|
-
</item>
|
|
135
|
-
</layout>
|
|
136
|
-
</item>
|
|
137
|
-
<item>
|
|
138
|
-
<layout class="QHBoxLayout" name="block_a3">
|
|
139
|
-
<item>
|
|
140
|
-
<widget class="QLabel" name="labela3">
|
|
141
|
-
<property name="text">
|
|
142
|
-
<string>Anchor 3</string>
|
|
377
|
+
<widget class="QPushButton" name="_switch_mode_to_twr_button">
|
|
378
|
+
<property name="toolTip">
|
|
379
|
+
<string>Write operation mode to anchors</string>
|
|
143
380
|
</property>
|
|
144
|
-
</widget>
|
|
145
|
-
</item>
|
|
146
|
-
<item>
|
|
147
|
-
<widget class="QDoubleSpinBox" name="spin_a3x"/>
|
|
148
|
-
</item>
|
|
149
|
-
<item>
|
|
150
|
-
<widget class="QDoubleSpinBox" name="spin_a3y"/>
|
|
151
|
-
</item>
|
|
152
|
-
<item>
|
|
153
|
-
<widget class="QDoubleSpinBox" name="spin_a3z"/>
|
|
154
|
-
</item>
|
|
155
|
-
</layout>
|
|
156
|
-
</item>
|
|
157
|
-
</layout>
|
|
158
|
-
</item>
|
|
159
|
-
<item>
|
|
160
|
-
<layout class="QHBoxLayout" name="anchor_block_2">
|
|
161
|
-
<item>
|
|
162
|
-
<layout class="QHBoxLayout" name="block_a4">
|
|
163
|
-
<item>
|
|
164
|
-
<widget class="QLabel" name="labela4">
|
|
165
381
|
<property name="text">
|
|
166
|
-
<string>
|
|
382
|
+
<string>TWR</string>
|
|
167
383
|
</property>
|
|
168
384
|
</widget>
|
|
169
385
|
</item>
|
|
170
386
|
<item>
|
|
171
|
-
<widget class="
|
|
172
|
-
</item>
|
|
173
|
-
<item>
|
|
174
|
-
<widget class="QDoubleSpinBox" name="spin_a4y"/>
|
|
175
|
-
</item>
|
|
176
|
-
<item>
|
|
177
|
-
<widget class="QDoubleSpinBox" name="spin_a4z"/>
|
|
178
|
-
</item>
|
|
179
|
-
</layout>
|
|
180
|
-
</item>
|
|
181
|
-
<item>
|
|
182
|
-
<layout class="QHBoxLayout" name="block_a5">
|
|
183
|
-
<item>
|
|
184
|
-
<widget class="QLabel" name="labela5">
|
|
387
|
+
<widget class="QPushButton" name="_switch_mode_to_tdoa2_button">
|
|
185
388
|
<property name="text">
|
|
186
|
-
<string>
|
|
389
|
+
<string>TDoA 2</string>
|
|
187
390
|
</property>
|
|
188
391
|
</widget>
|
|
189
392
|
</item>
|
|
190
393
|
<item>
|
|
191
|
-
<widget class="
|
|
192
|
-
</item>
|
|
193
|
-
<item>
|
|
194
|
-
<widget class="QDoubleSpinBox" name="spin_a5y"/>
|
|
195
|
-
</item>
|
|
196
|
-
<item>
|
|
197
|
-
<widget class="QDoubleSpinBox" name="spin_a5z"/>
|
|
198
|
-
</item>
|
|
199
|
-
</layout>
|
|
200
|
-
</item>
|
|
201
|
-
</layout>
|
|
202
|
-
</item>
|
|
203
|
-
<item>
|
|
204
|
-
<layout class="QHBoxLayout" name="anchor_block_3">
|
|
205
|
-
<item>
|
|
206
|
-
<layout class="QHBoxLayout" name="block_a6">
|
|
207
|
-
<item>
|
|
208
|
-
<widget class="QLabel" name="labela6">
|
|
394
|
+
<widget class="QPushButton" name="_switch_mode_to_tdoa3_button">
|
|
209
395
|
<property name="text">
|
|
210
|
-
<string>
|
|
396
|
+
<string>TDoA 3</string>
|
|
211
397
|
</property>
|
|
212
398
|
</widget>
|
|
213
399
|
</item>
|
|
214
|
-
<item>
|
|
215
|
-
<widget class="QDoubleSpinBox" name="spin_a6x"/>
|
|
216
|
-
</item>
|
|
217
|
-
<item>
|
|
218
|
-
<widget class="QDoubleSpinBox" name="spin_a6y"/>
|
|
219
|
-
</item>
|
|
220
|
-
<item>
|
|
221
|
-
<widget class="QDoubleSpinBox" name="spin_a6z"/>
|
|
222
|
-
</item>
|
|
223
400
|
</layout>
|
|
224
401
|
</item>
|
|
225
402
|
<item>
|
|
226
|
-
<layout class="QHBoxLayout" name="
|
|
403
|
+
<layout class="QHBoxLayout" name="horizontalLayout_9">
|
|
227
404
|
<item>
|
|
228
|
-
<widget class="
|
|
405
|
+
<widget class="QPushButton" name="_configure_anchor_positions_button">
|
|
229
406
|
<property name="text">
|
|
230
|
-
<string>
|
|
407
|
+
<string>Configure positions</string>
|
|
231
408
|
</property>
|
|
232
409
|
</widget>
|
|
233
410
|
</item>
|
|
234
|
-
<item>
|
|
235
|
-
<widget class="QDoubleSpinBox" name="spin_a7x"/>
|
|
236
|
-
</item>
|
|
237
|
-
<item>
|
|
238
|
-
<widget class="QDoubleSpinBox" name="spin_a7y"/>
|
|
239
|
-
</item>
|
|
240
|
-
<item>
|
|
241
|
-
<widget class="QDoubleSpinBox" name="spin_a7z"/>
|
|
242
|
-
</item>
|
|
243
411
|
</layout>
|
|
244
412
|
</item>
|
|
245
|
-
</layout>
|
|
246
|
-
</item>
|
|
247
|
-
<item>
|
|
248
|
-
<layout class="QHBoxLayout" name="horizontalLayout_2">
|
|
249
413
|
<item>
|
|
250
|
-
<spacer name="
|
|
414
|
+
<spacer name="verticalSpacer">
|
|
251
415
|
<property name="orientation">
|
|
252
|
-
<enum>Qt::
|
|
416
|
+
<enum>Qt::Vertical</enum>
|
|
253
417
|
</property>
|
|
254
418
|
<property name="sizeHint" stdset="0">
|
|
255
419
|
<size>
|
|
256
|
-
<width>
|
|
257
|
-
<height>
|
|
420
|
+
<width>20</width>
|
|
421
|
+
<height>40</height>
|
|
258
422
|
</size>
|
|
259
423
|
</property>
|
|
260
424
|
</spacer>
|
|
261
425
|
</item>
|
|
262
|
-
<item>
|
|
263
|
-
<widget class="QPushButton" name="_read_pos_from_anhors_button">
|
|
264
|
-
<property name="text">
|
|
265
|
-
<string>Get from anchors</string>
|
|
266
|
-
</property>
|
|
267
|
-
</widget>
|
|
268
|
-
</item>
|
|
269
|
-
<item>
|
|
270
|
-
<widget class="QPushButton" name="_write_pos_to_anhors_button">
|
|
271
|
-
<property name="text">
|
|
272
|
-
<string>Write to anchors</string>
|
|
273
|
-
</property>
|
|
274
|
-
</widget>
|
|
275
|
-
</item>
|
|
276
426
|
</layout>
|
|
277
|
-
</
|
|
278
|
-
</
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
</property>
|
|
294
|
-
</widget>
|
|
295
|
-
</item>
|
|
296
|
-
<item>
|
|
297
|
-
<spacer name="horizontalSpacer_2">
|
|
298
|
-
<property name="orientation">
|
|
299
|
-
<enum>Qt::Horizontal</enum>
|
|
300
|
-
</property>
|
|
301
|
-
<property name="sizeHint" stdset="0">
|
|
302
|
-
<size>
|
|
303
|
-
<width>40</width>
|
|
304
|
-
<height>20</height>
|
|
305
|
-
</size>
|
|
306
|
-
</property>
|
|
307
|
-
</spacer>
|
|
308
|
-
</item>
|
|
309
|
-
</layout>
|
|
310
|
-
</item>
|
|
311
|
-
</layout>
|
|
312
|
-
</widget>
|
|
313
|
-
</item>
|
|
314
|
-
<item>
|
|
315
|
-
<spacer name="verticalSpacer">
|
|
316
|
-
<property name="orientation">
|
|
317
|
-
<enum>Qt::Vertical</enum>
|
|
318
|
-
</property>
|
|
319
|
-
<property name="sizeHint" stdset="0">
|
|
320
|
-
<size>
|
|
321
|
-
<width>20</width>
|
|
322
|
-
<height>40</height>
|
|
323
|
-
</size>
|
|
324
|
-
</property>
|
|
325
|
-
</spacer>
|
|
427
|
+
</widget>
|
|
428
|
+
</item>
|
|
429
|
+
<item>
|
|
430
|
+
<spacer name="horizontalSpacer_2">
|
|
431
|
+
<property name="orientation">
|
|
432
|
+
<enum>Qt::Horizontal</enum>
|
|
433
|
+
</property>
|
|
434
|
+
<property name="sizeHint" stdset="0">
|
|
435
|
+
<size>
|
|
436
|
+
<width>40</width>
|
|
437
|
+
<height>20</height>
|
|
438
|
+
</size>
|
|
439
|
+
</property>
|
|
440
|
+
</spacer>
|
|
441
|
+
</item>
|
|
442
|
+
</layout>
|
|
326
443
|
</item>
|
|
327
444
|
</layout>
|
|
328
445
|
</item>
|
|
329
|
-
<item row="1" column="
|
|
330
|
-
<layout class="QVBoxLayout" name="
|
|
446
|
+
<item row="1" column="0">
|
|
447
|
+
<layout class="QVBoxLayout" name="_plot_layout"/>
|
|
331
448
|
</item>
|
|
332
449
|
</layout>
|
|
333
450
|
</item>
|