mirror of
https://gitee.com/mirrors_PX4/PX4-Autopilot.git
synced 2026-04-14 10:07:39 +08:00
MIS_LTRMIN_ALt was used to limit the go-to altitude of a LOITER_TO_ALT (not the exit altitude, but the altitude that the vehicle went to to fly to WP), and during landing abort to climb to at least this altitude. The min entry altitude of LOITER_TO_ALT I remove with this commit, while for the min alt during abort I added the new parameter MIS_LND_ABRT_ALT. Signed-off-by: Silvan Fuhrer <silvan@auterion.com>
22 lines
359 B
Bash
22 lines
359 B
Bash
#!/bin/sh
|
|
#
|
|
# UGV default parameters.
|
|
#
|
|
# NOTE: Script variables are declared/initialized/unset in the rcS script.
|
|
#
|
|
|
|
set VEHICLE_TYPE rover
|
|
|
|
# MAV_TYPE_SURFACE_BOAT 11
|
|
param set-default MAV_TYPE 11
|
|
|
|
#
|
|
# Default parameters for UGVs.
|
|
#
|
|
param set-default MIS_TAKEOFF_ALT 0.01
|
|
|
|
param set-default NAV_ACC_RAD 2
|
|
|
|
# Temporary.
|
|
param set-default NAV_FW_ALT_RAD 1000
|