mirror of
https://gitee.com/mirrors_PX4/PX4-Autopilot.git
synced 2026-07-22 00:30:35 +08:00
Merge branch 'master' into inav_fix
This commit is contained in:
@@ -53,7 +53,7 @@ else
|
|||||||
mavlink start -d /dev/ttyS0
|
mavlink start -d /dev/ttyS0
|
||||||
usleep 5000
|
usleep 5000
|
||||||
fmu mode_pwm
|
fmu mode_pwm
|
||||||
param set BAT_V_SCALING 0.004593
|
param set BAT_V_SCALING 0.0098
|
||||||
set EXIT_ON_END yes
|
set EXIT_ON_END yes
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|||||||
@@ -27,6 +27,22 @@ else
|
|||||||
set BOARD fmuv2
|
set BOARD fmuv2
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
# Start airspeed sensors
|
||||||
|
if meas_airspeed start
|
||||||
|
then
|
||||||
|
echo "using MEAS airspeed sensor"
|
||||||
|
else
|
||||||
|
if ets_airspeed start
|
||||||
|
then
|
||||||
|
echo "using ETS airspeed sensor (bus 3)"
|
||||||
|
else
|
||||||
|
if ets_airspeed start -b 1
|
||||||
|
then
|
||||||
|
echo "Using ETS airspeed sensor (bus 1)"
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
#
|
#
|
||||||
# Start the sensor collection task.
|
# Start the sensor collection task.
|
||||||
# IMPORTANT: this also loads param offsets
|
# IMPORTANT: this also loads param offsets
|
||||||
|
|||||||
@@ -734,9 +734,10 @@ FixedwingPositionControl::control_position(const math::Vector2f ¤t_positio
|
|||||||
/* apply minimum pitch and limit roll if target altitude is not within 10 meters */
|
/* apply minimum pitch and limit roll if target altitude is not within 10 meters */
|
||||||
if (altitude_error > 10.0f) {
|
if (altitude_error > 10.0f) {
|
||||||
|
|
||||||
|
/* enforce a minimum of 10 degrees pitch up on takeoff, or take parameter */
|
||||||
_tecs.update_pitch_throttle(_R_nb, _att.pitch, _global_pos.alt, _global_triplet.current.altitude, calculate_target_airspeed(_parameters.airspeed_min),
|
_tecs.update_pitch_throttle(_R_nb, _att.pitch, _global_pos.alt, _global_triplet.current.altitude, calculate_target_airspeed(_parameters.airspeed_min),
|
||||||
_airspeed.indicated_airspeed_m_s, eas2tas,
|
_airspeed.indicated_airspeed_m_s, eas2tas,
|
||||||
true, math::radians(global_triplet.current.param1),
|
true, math::max(math::radians(global_triplet.current.param1), math::radians(10.0f)),
|
||||||
_parameters.throttle_min, _parameters.throttle_max, _parameters.throttle_cruise,
|
_parameters.throttle_min, _parameters.throttle_max, _parameters.throttle_cruise,
|
||||||
math::radians(_parameters.pitch_limit_min), math::radians(_parameters.pitch_limit_max));
|
math::radians(_parameters.pitch_limit_min), math::radians(_parameters.pitch_limit_max));
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user