Skip to content
Snippets Groups Projects
Commit 58a4d7a4 authored by Adam M Rivera's avatar Adam M Rivera
Browse files

Planner: Fixed too long enum display text.

parent 2ee8237b
No related branches found
No related tags found
No related merge requests found
......@@ -365,7 +365,7 @@ namespace ArdupilotMega
STABILIZE = 0, // hold level position
[DisplayText("Acro")]
ACRO = 1, // rate control
[DisplayText("Altitude Hold")]
[DisplayText("Alt Hold")]
ALT_HOLD = 2, // AUTO control
[DisplayText("Auto")]
AUTO = 3, // AUTO control
......@@ -373,11 +373,11 @@ namespace ArdupilotMega
GUIDED = 4, // AUTO control
[DisplayText("Loiter")]
LOITER = 5, // Hold a single location
[DisplayText("Return to Launch")]
[DisplayText("RTL")]
RTL = 6, // AUTO control
[DisplayText("Circle")]
CIRCLE = 7,
[DisplayText("Position Hold")]
[DisplayText("Pos Hold")]
POSITION = 8,
[DisplayText("Land")]
LAND = 9, // AUTO control
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment