Skip to content

Commit 1612a1f

Browse files
Ryanf55peterbarker
authored andcommitted
AP_TECS: Fix spelling
Signed-off-by: Ryan Friedman <25047695+Ryanf55@users.noreply.github.com>
1 parent f68b9de commit 1612a1f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

libraries/AP_TECS/AP_TECS.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ const AP_Param::GroupInfo AP_TECS::var_info[] = {
116116

117117
// @Param: LAND_ARSPD
118118
// @DisplayName: Airspeed during landing approach (m/s)
119-
// @Description: When performing an autonomus landing, this value is used as the goal airspeed during approach. Max airspeed allowed is Trim Airspeed or AIRSPEED_MAX as defined by LAND_OPTIONS bitmask. Note that this parameter is not useful if your platform does not have an airspeed sensor (use TECS_LAND_THR instead). If negative then this value is halfway between AIRSPEED_MIN and AIRSPEED_CRUISE speed for fixed wing autolandings.
119+
// @Description: When performing an autonomous landing, this value is used as the goal airspeed during approach. Max airspeed allowed is Trim Airspeed or AIRSPEED_MAX as defined by LAND_OPTIONS bitmask. Note that this parameter is not useful if your platform does not have an airspeed sensor (use TECS_LAND_THR instead). If negative then this value is halfway between AIRSPEED_MIN and AIRSPEED_CRUISE speed for fixed wing autolandings.
120120
// @Range: -1 127
121121
// @Increment: 1
122122
// @User: Standard
@@ -197,7 +197,7 @@ const AP_Param::GroupInfo AP_TECS::var_info[] = {
197197

198198
// @Param: LAND_SRC
199199
// @DisplayName: Land sink rate change
200-
// @Description: When zero, the flare sink rate (TECS_LAND_SINK) is a fixed sink demand. With this enabled the flare sinkrate will increase/decrease the flare sink demand as you get further beyond the LAND waypoint. Has no effect before the waypoint. This value is added to TECS_LAND_SINK proportional to distance traveled after wp. With an increasing sink rate you can still land in a given distance if you're traveling too fast and cruise passed the land point. A positive value will force the plane to land sooner proportional to distance passed land point. A negative number will tell the plane to slowly climb allowing for a pitched-up stall landing. Recommend 0.2 as initial value.
200+
// @Description: When zero, the flare sink rate (TECS_LAND_SINK) is a fixed sink demand. With this enabled the flare sink rate will increase/decrease the flare sink demand as you get further beyond the LAND waypoint. Has no effect before the waypoint. This value is added to TECS_LAND_SINK proportional to distance traveled after wp. With an increasing sink rate you can still land in a given distance if you're traveling too fast and cruise passed the land point. A positive value will force the plane to land sooner proportional to distance passed land point. A negative number will tell the plane to slowly climb allowing for a pitched-up stall landing. Recommend 0.2 as initial value.
201201
// @Range: -2.0 2.0
202202
// @Units: m/s/m
203203
// @Increment: 0.1
@@ -987,7 +987,7 @@ void AP_TECS::_update_pitch(void)
987987

988988
float SPE_weighting = 2.0f - _SKE_weighting;
989989

990-
// either weight can fade to 0, but don't go above 1 to prevent instability if tuned at a speed weight of 1 and wieghting is varied to end points in flight.
990+
// either weight can fade to 0, but don't go above 1 to prevent instability if tuned at a speed weight of 1 and weighting is varied to end points in flight.
991991
SPE_weighting = MIN(SPE_weighting, 1.0f);
992992
_SKE_weighting = MIN(_SKE_weighting, 1.0f);
993993

0 commit comments

Comments
 (0)