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
13000a24
Commit
13000a24
authored
Feb 25, 2020
by
DoinLakeFlyer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
parent
63ed8565
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
18 additions
and
0 deletions
+18
-0
ArduCopterFirmwarePlugin.cc
src/FirmwarePlugin/APM/ArduCopterFirmwarePlugin.cc
+6
-0
ArduCopterFirmwarePlugin.h
src/FirmwarePlugin/APM/ArduCopterFirmwarePlugin.h
+3
-0
ArduRoverFirmwarePlugin.cc
src/FirmwarePlugin/APM/ArduRoverFirmwarePlugin.cc
+6
-0
ArduRoverFirmwarePlugin.h
src/FirmwarePlugin/APM/ArduRoverFirmwarePlugin.h
+3
-0
No files found.
src/FirmwarePlugin/APM/ArduCopterFirmwarePlugin.cc
View file @
13000a24
...
...
@@ -43,7 +43,10 @@ APMCopterMode::APMCopterMode(uint32_t mode, bool settable) :
{
GUIDED_NOGPS
,
"Guided No GPS"
},
{
SMART_RTL
,
"Smart RTL"
},
{
FLOWHOLD
,
"Flow Hold"
},
#if 0
// Follow me not ready for Stable
{ FOLLOW, "Follow" },
#endif
{
ZIGZAG
,
"ZigZag"
},
});
}
...
...
@@ -71,7 +74,10 @@ ArduCopterFirmwarePlugin::ArduCopterFirmwarePlugin(void)
APMCopterMode
(
APMCopterMode
::
GUIDED_NOGPS
,
true
),
APMCopterMode
(
APMCopterMode
::
SMART_RTL
,
true
),
APMCopterMode
(
APMCopterMode
::
FLOWHOLD
,
true
),
#if 0
// Follow me not ready for Stable
APMCopterMode(APMCopterMode::FOLLOW, true),
#endif
APMCopterMode
(
APMCopterMode
::
ZIGZAG
,
true
),
});
...
...
src/FirmwarePlugin/APM/ArduCopterFirmwarePlugin.h
View file @
13000a24
...
...
@@ -43,7 +43,10 @@ public:
GUIDED_NOGPS
=
20
,
SMART_RTL
=
21
,
// SMART_RTL returns to home by retracing its steps
FLOWHOLD
=
22
,
// FLOWHOLD holds position with optical flow without rangefinder
#if 0
// Follow me not ready for Stable
FOLLOW = 23, // follow attempts to follow another vehicle or ground station
#endif
ZIGZAG
=
24
,
// ZIGZAG mode is able to fly in a zigzag manner with predefined point A and point B
};
...
...
src/FirmwarePlugin/APM/ArduRoverFirmwarePlugin.cc
View file @
13000a24
...
...
@@ -22,7 +22,10 @@ APMRoverMode::APMRoverMode(uint32_t mode, bool settable)
{
STEERING
,
"Steering"
},
{
HOLD
,
"Hold"
},
{
LOITER
,
"Loiter"
},
#if 0
// Follow me not ready for Stable
{FOLLOW, "Follow"},
#endif
{
SIMPLE
,
"Simple"
},
{
AUTO
,
"Auto"
},
{
RTL
,
"RTL"
},
...
...
@@ -40,7 +43,10 @@ ArduRoverFirmwarePlugin::ArduRoverFirmwarePlugin(void)
APMRoverMode
(
APMRoverMode
::
STEERING
,
true
),
APMRoverMode
(
APMRoverMode
::
HOLD
,
true
),
APMRoverMode
(
APMRoverMode
::
LOITER
,
true
),
#if 0
// Follow me not ready for Stable
APMRoverMode(APMRoverMode::FOLLOW ,true),
#endif
APMRoverMode
(
APMRoverMode
::
SIMPLE
,
true
),
APMRoverMode
(
APMRoverMode
::
AUTO
,
true
),
APMRoverMode
(
APMRoverMode
::
RTL
,
true
),
...
...
src/FirmwarePlugin/APM/ArduRoverFirmwarePlugin.h
View file @
13000a24
...
...
@@ -25,7 +25,10 @@ public:
STEERING
=
3
,
HOLD
=
4
,
LOITER
=
5
,
#if 0
// Follow me not ready for Stable
FOLLOW = 6,
#endif
SIMPLE
=
7
,
AUTO
=
10
,
RTL
=
11
,
...
...
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