mirror of
https://github.com/PX4/PX4-Autopilot.git
synced 2026-05-09 13:24:25 +08:00
a061b8665b
hardcoding the default warning and respecting boards without SD card with a define.
18 lines
366 B
Bash
18 lines
366 B
Bash
#!/bin/sh
|
|
#
|
|
# board specific defaults
|
|
#------------------------------------------------------------------------------
|
|
|
|
param set-default SYS_AUTOSTART 4061
|
|
|
|
param set-default BAT1_V_DIV 9.0
|
|
|
|
param set-default SENS_EXT_I2C_PRB 0
|
|
|
|
param set-default EV_TSK_STAT_DIS 1
|
|
|
|
param set-default SYS_DM_BACKEND 1
|
|
|
|
# Use MAVLink log streaming
|
|
set LOGGER_ARGS "-m mavlink -c 0.5"
|