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
182573fe
Unverified
Commit
182573fe
authored
Nov 08, 2019
by
Gus Grubba
Committed by
GitHub
Nov 08, 2019
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #7944 from mrivi/cp_params
rename collision prevention parameters to match Firmware
parents
4f3c015c
1c2ec934
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
SafetyComponent.qml
src/AutoPilotPlugins/PX4/SafetyComponent.qml
+1
-1
VehicleObjectAvoidance.cc
src/Vehicle/VehicleObjectAvoidance.cc
+1
-1
No files found.
src/AutoPilotPlugins/PX4/SafetyComponent.qml
View file @
182573fe
...
...
@@ -52,7 +52,7 @@ SetupPage {
property
Fact
_rcLossAction
:
controller
.
getParameterFact
(
-
1
,
"
NAV_RCL_ACT
"
)
property
Fact
_dlLossAction
:
controller
.
getParameterFact
(
-
1
,
"
NAV_DLL_ACT
"
)
property
Fact
_disarmLandDelay
:
controller
.
getParameterFact
(
-
1
,
"
COM_DISARM_LAND
"
)
property
Fact
_collisionPrevention
:
controller
.
getParameterFact
(
-
1
,
"
MPC_COL_PREV_D
"
)
property
Fact
_collisionPrevention
:
controller
.
getParameterFact
(
-
1
,
"
CP_DIST
"
)
property
Fact
_objectAvoidance
:
controller
.
getParameterFact
(
-
1
,
"
COM_OBS_AVOID
"
)
property
Fact
_landSpeedMC
:
controller
.
getParameterFact
(
-
1
,
"
MPC_LAND_SPEED
"
,
false
)
property
bool
_hitlAvailable
:
controller
.
parameterExists
(
-
1
,
hitlParam
)
...
...
src/Vehicle/VehicleObjectAvoidance.cc
View file @
182573fe
...
...
@@ -12,7 +12,7 @@
#include "ParameterManager.h"
#include <cmath>
static
const
char
*
kColPrevParam
=
"
MPC_COL_PREV_D
"
;
static
const
char
*
kColPrevParam
=
"
CP_DIST
"
;
//-----------------------------------------------------------------------------
VehicleObjectAvoidance
::
VehicleObjectAvoidance
(
Vehicle
*
vehicle
,
QObject
*
parent
)
...
...
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