Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Q
qgroundcontrol
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Valentin Platzgummer
qgroundcontrol
Commits
9ca7bbe7
Commit
9ca7bbe7
authored
Aug 21, 2020
by
DonLakeFlyer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
parent
0d1a709d
Changes
6
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
380 additions
and
303 deletions
+380
-303
BatteryParams.qml
src/AutoPilotPlugins/PX4/BatteryParams.qml
+58
-0
PowerComponent.qml
src/AutoPilotPlugins/PX4/PowerComponent.qml
+309
-289
PowerComponentController.cc
src/AutoPilotPlugins/PX4/PowerComponentController.cc
+9
-12
PowerComponentController.h
src/AutoPilotPlugins/PX4/PowerComponentController.h
+2
-2
PX4Resources.qrc
src/FirmwarePlugin/PX4/PX4Resources.qrc
+1
-0
qmldir
src/QmlControls/QGroundControl/PX4/qmldir
+1
-0
No files found.
src/AutoPilotPlugins/PX4/BatteryParams.qml
0 → 100644
View file @
9ca7bbe7
/****************************************************************************
*
* (c) 2009-2020 QGROUNDCONTROL PROJECT <http://www.qgroundcontrol.org>
*
* QGroundControl is licensed according to the terms in the file
* COPYING.md in the root of the source code directory.
*
****************************************************************************/
import
QtQuick
2.3
import
QtQuick
.
Controls
1.2
import
QtQuick
.
Dialogs
1.2
import
QtQuick
.
Layouts
1.2
import
QGroundControl
1.0
import
QGroundControl
.
FactSystem
1.0
import
QGroundControl
.
FactControls
1.0
import
QGroundControl
.
Controls
1.0
import
QGroundControl
.
ScreenTools
1.0
import
QGroundControl
.
Controllers
1.0
// Exposes the set of battery parameters for new and old firmwares
// Older firmware: BAT_* naming
// Newer firmware: BAT#_* naming, with indices starting at 1
QtObject
{
property
var
controller
///< FactPanelController
property
int
batteryIndex
///< 1-based battery index
property
bool
battVoltageDividerAvailable
:
controller
.
parameterExists
(
-
1
,
"
BAT#_V_DIV
"
.
replace
(
"
#
"
,
_indexedBatteryParamsAvailable
?
batteryIndex
:
""
))
property
bool
battAmpsPerVoltAvailable
:
controller
.
parameterExists
(
-
1
,
"
BAT#_A_PER_V
"
.
replace
(
"
#
"
,
_indexedBatteryParamsAvailable
?
batteryIndex
:
""
))
property
Fact
battNumCells
:
controller
.
getParameterFact
(
-
1
,
"
BAT#_N_CELLS
"
.
replace
(
"
#
"
,
_indexedBatteryParamsAvailable
?
batteryIndex
:
""
))
property
Fact
battHighVolt
:
controller
.
getParameterFact
(
-
1
,
"
BAT#_V_CHARGED
"
.
replace
(
"
#
"
,
_indexedBatteryParamsAvailable
?
batteryIndex
:
""
))
property
Fact
battLowVolt
:
controller
.
getParameterFact
(
-
1
,
"
BAT#_V_EMPTY
"
.
replace
(
"
#
"
,
_indexedBatteryParamsAvailable
?
batteryIndex
:
""
))
property
Fact
battVoltLoadDrop
:
controller
.
getParameterFact
(
-
1
,
"
BAT#_V_LOAD_DROP
"
.
replace
(
"
#
"
,
_indexedBatteryParamsAvailable
?
batteryIndex
:
""
))
property
Fact
battVoltageDivider
:
controller
.
getParameterFact
(
-
1
,
"
BAT#_V_DIV
"
.
replace
(
"
#
"
,
_indexedBatteryParamsAvailable
?
batteryIndex
:
""
),
false
)
property
Fact
battAmpsPerVolt
:
controller
.
getParameterFact
(
-
1
,
"
BAT#_A_PER_V
"
.
replace
(
"
#
"
,
_indexedBatteryParamsAvailable
?
batteryIndex
:
""
),
false
)
property
string
_batNCellsIndexedParamName
:
"
BAT#_N_CELLS
"
property
bool
_indexedBatteryParamsAvailable
:
controller
.
parameterExists
(
-
1
,
_batNCellsIndexedParamName
.
replace
(
"
#
"
,
1
))
property
int
_indexedBatteryParamCount
:
getIndexedBatteryParamCount
()
Component.onCompleted
:
{
if
(
batteryIndex
>
1
&&
!
_indexedBatteryParamsAvailable
)
{
console
.
warn
(
"
Internal Error: BatteryParams.qml batteryIndex > 1 while indexed params are not available
"
,
batteryIndex
)
}
}
function
getIndexedBatteryParamCount
()
{
var
batteryIndex
=
1
do
{
if
(
!
controller
.
parameterExists
(
-
1
,
_batNCellsIndexedParamName
.
replace
(
"
#
"
,
batteryIndex
)))
{
return
batteryIndex
-
1
}
batteryIndex
++
}
while
(
true
)
}
}
src/AutoPilotPlugins/PX4/PowerComponent.qml
View file @
9ca7bbe7
This diff is collapsed.
Click to expand it.
src/AutoPilotPlugins/PX4/PowerComponentController.cc
View file @
9ca7bbe7
...
...
@@ -22,26 +22,26 @@ PowerComponentController::PowerComponentController(void)
void
PowerComponentController
::
calibrateEsc
(
void
)
{
_warningMessages
.
clear
();
connect
(
_vehicle
,
&
Vehicle
::
textMessageReceived
,
this
,
&
PowerComponentController
::
_handle
UAS
TextMessage
);
connect
(
_vehicle
,
&
Vehicle
::
textMessageReceived
,
this
,
&
PowerComponentController
::
_handle
Vehicle
TextMessage
);
_vehicle
->
startCalibration
(
Vehicle
::
CalibrationEsc
);
}
void
PowerComponentController
::
b
usConfigureActuators
(
void
)
void
PowerComponentController
::
startB
usConfigureActuators
(
void
)
{
_warningMessages
.
clear
();
connect
(
_vehicle
,
&
Vehicle
::
textMessageReceived
,
this
,
&
PowerComponentController
::
_handle
UAS
TextMessage
);
_
uas
->
startBusConfig
(
UASInterface
::
StartBusConfigActuators
);
connect
(
_vehicle
,
&
Vehicle
::
textMessageReceived
,
this
,
&
PowerComponentController
::
_handle
Vehicle
TextMessage
);
_
vehicle
->
startUAVCANBusConfig
(
);
}
void
PowerComponentController
::
stopBusConfigureActuators
(
void
)
{
disconnect
(
_vehicle
,
&
Vehicle
::
textMessageReceived
,
this
,
&
PowerComponentController
::
_handle
UAS
TextMessage
);
_
uas
->
startBusConfig
(
UASInterface
::
EndBusConfigActuators
);
disconnect
(
_vehicle
,
&
Vehicle
::
textMessageReceived
,
this
,
&
PowerComponentController
::
_handle
Vehicle
TextMessage
);
_
vehicle
->
stopUAVCANBusConfig
(
);
}
void
PowerComponentController
::
_stopCalibration
(
void
)
{
disconnect
(
_vehicle
,
&
Vehicle
::
textMessageReceived
,
this
,
&
PowerComponentController
::
_handle
UAS
TextMessage
);
disconnect
(
_vehicle
,
&
Vehicle
::
textMessageReceived
,
this
,
&
PowerComponentController
::
_handle
Vehicle
TextMessage
);
}
void
PowerComponentController
::
_stopBusConfig
(
void
)
...
...
@@ -49,12 +49,9 @@ void PowerComponentController::_stopBusConfig(void)
_stopCalibration
();
}
void
PowerComponentController
::
_handle
UASTextMessage
(
int
uasId
,
int
compId
,
int
severity
,
QString
text
)
void
PowerComponentController
::
_handle
VehicleTextMessage
(
int
vehicleId
,
int
/* compId */
,
int
/* severity */
,
QString
text
)
{
Q_UNUSED
(
compId
);
Q_UNUSED
(
severity
);
if
(
uasId
!=
_vehicle
->
id
())
{
if
(
vehicleId
!=
_vehicle
->
id
())
{
return
;
}
...
...
src/AutoPilotPlugins/PX4/PowerComponentController.h
View file @
9ca7bbe7
...
...
@@ -29,7 +29,7 @@ public:
PowerComponentController
(
void
);
Q_INVOKABLE
void
calibrateEsc
(
void
);
Q_INVOKABLE
void
b
usConfigureActuators
(
void
);
Q_INVOKABLE
void
startB
usConfigureActuators
(
void
);
Q_INVOKABLE
void
stopBusConfigureActuators
(
void
);
signals:
...
...
@@ -43,7 +43,7 @@ signals:
void
calibrationSuccess
(
const
QStringList
&
warningMessages
);
private
slots
:
void
_handle
UASTextMessage
(
int
uas
Id
,
int
compId
,
int
severity
,
QString
text
);
void
_handle
VehicleTextMessage
(
int
vehicle
Id
,
int
compId
,
int
severity
,
QString
text
);
private:
void
_stopCalibration
(
void
);
...
...
src/FirmwarePlugin/PX4/PX4Resources.qrc
View file @
9ca7bbe7
...
...
@@ -21,6 +21,7 @@
<file alias="SensorsComponentSummaryFixedWing.qml">../../AutoPilotPlugins/PX4/SensorsComponentSummaryFixedWing.qml</file>
<file alias="SensorsSetup.qml">../../AutoPilotPlugins/PX4/SensorsSetup.qml</file>
<file alias="QGroundControl/PX4/qmldir">../../QmlControls/QGroundControl/PX4/qmldir</file>
<file alias="QGroundControl/PX4/BatteryParams.qml">../../AutoPilotPlugins/PX4/BatteryParams.qml</file>
</qresource>
<qresource prefix="/json">
<file alias="PX4-MavCmdInfoCommon.json">PX4-MavCmdInfoCommon.json</file>
...
...
src/QmlControls/QGroundControl/PX4/qmldir
View file @
9ca7bbe7
Module QGroundControl.PX4
BatteryParams 1.0 BatteryParams.qml
SensorSetupPage 1.0 SensorSetupPage.qml
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment