Skip to content
Snippets Groups Projects
Commit 699b84e8 authored by Randy Mackay's avatar Randy Mackay
Browse files

Parachute: minor comment changes

parent 2b4d2697
No related branches found
No related tags found
No related merge requests found
......@@ -44,7 +44,7 @@ const AP_Param::GroupInfo AP_Parachute::var_info[] PROGMEM = {
// @Param: ALT_MIN
// @DisplayName: Parachute min altitude in cm above home
// @Description: Parachute min altitude above home. When vehicle is below this alt parachute cannot be released
// @Description: Parachute min altitude above home. Parachute will not be released below this altitude. 0 to disable alt check.
// @Range: 0 10000
// @Units: Centimeters
// @Increment: 100
......
......@@ -51,6 +51,7 @@ public:
void update();
/// alt_min_cm - returns the min altitude above home the vehicle should have before parachute is released
/// 0 = altitude check disabled
int16_t alt_min_cm() const { return _alt_min_cm; }
static const struct AP_Param::GroupInfo var_info[];
......
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