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
3e535acd
Commit
3e535acd
authored
Apr 08, 2015
by
Bryant
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Support LOCAL_OFFSET_NED waypoints.
parent
999a4a87
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
0 deletions
+2
-0
WaypointEditableView.cc
src/ui/WaypointEditableView.cc
+1
-0
QGCMissionNavWaypoint.cc
src/ui/mission/QGCMissionNavWaypoint.cc
+1
-0
No files found.
src/ui/WaypointEditableView.cc
View file @
3e535acd
...
...
@@ -84,6 +84,7 @@ WaypointEditableView::WaypointEditableView(Waypoint* wp, QWidget* parent) :
m_ui
->
comboBox_frame
->
addItem
(
"Global/Abs. Alt"
,
MAV_FRAME_GLOBAL
);
m_ui
->
comboBox_frame
->
addItem
(
"Global/Rel. Alt"
,
MAV_FRAME_GLOBAL_RELATIVE_ALT
);
m_ui
->
comboBox_frame
->
addItem
(
"Local(NED)"
,
MAV_FRAME_LOCAL_NED
);
m_ui
->
comboBox_frame
->
addItem
(
"Local Offset(NED)"
,
MAV_FRAME_LOCAL_OFFSET_NED
);
m_ui
->
comboBox_frame
->
addItem
(
"Mission"
,
MAV_FRAME_MISSION
);
// We do not want users to mess with the current waypoint in missions -
...
...
src/ui/mission/QGCMissionNavWaypoint.cc
View file @
3e535acd
...
...
@@ -41,6 +41,7 @@ void QGCMissionNavWaypoint::updateFrame(MAV_FRAME frame)
{
case
MAV_FRAME_LOCAL_ENU
:
case
MAV_FRAME_LOCAL_NED
:
case
MAV_FRAME_LOCAL_OFFSET_NED
:
this
->
ui
->
posNSpinBox
->
show
();
this
->
ui
->
posESpinBox
->
show
();
this
->
ui
->
posDSpinBox
->
show
();
...
...
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