Browse Source

Copter: minor throw mode comment fix

No functional change
mission-4.1.18
Randy Mackay 9 years ago
parent
commit
8c5c8eec44
  1. 2
      ArduCopter/control_throw.cpp

2
ArduCopter/control_throw.cpp

@ -218,7 +218,7 @@ bool Copter::throw_detected() @@ -218,7 +218,7 @@ bool Copter::throw_detected()
// Check if the accel length is < 1.0g indicating that any throw action is complete and the copter has been released
bool no_throw_action = ins.get_accel().length() < 1.0f * GRAVITY_MSS;
// High velocity or free-fall combined with incresing height indicate a possible air-drop or throw release
// High velocity or free-fall combined with increasing height indicate a possible air-drop or throw release
bool possible_throw_detected = (free_falling || high_speed) && changing_height && no_throw_action;
// Record time and vertical velocity when we detect the possible throw

Loading…
Cancel
Save