mirror of
https://gitee.com/xiaohuolufeihua/bizhang_-obav.git
synced 2026-05-21 01:12:11 +00:00
- the ekf2 frontend typically runs in the background for up to 30 seconds waiting for all instances to appear, but this isn't supported by the legacy posix launcher
64 lines
1.1 KiB
Bash
64 lines
1.1 KiB
Bash
#!/bin/sh
|
|
# PX4 commands need the 'px4-' prefix in bash.
|
|
# (px4-alias.sh is expected to be in the PATH)
|
|
. px4-alias.sh
|
|
|
|
# navio config for a quad
|
|
|
|
if [ -f eeprom/parameters ]
|
|
then
|
|
param load
|
|
fi
|
|
param set CBRK_SUPPLY_CHK 894281
|
|
param set SYS_AUTOSTART 4001
|
|
param set MAV_TYPE 2
|
|
|
|
# Multi-EKF
|
|
param set EKF2_MULTI_IMU 2
|
|
param set SENS_IMU_MODE 0
|
|
|
|
dataman start
|
|
|
|
load_mon start
|
|
|
|
mpu9250 -s -R 2 start
|
|
lsm9ds1 -s -R 4 start
|
|
lsm9ds1_mag -s -R 4 start
|
|
ms5611 -X start
|
|
|
|
navio_rgbled start
|
|
|
|
board_adc start
|
|
battery_status start
|
|
|
|
gps start -d /dev/spidev0.0 -i spi -p ubx
|
|
rc_update start
|
|
sensors start
|
|
commander start
|
|
navigator start
|
|
ekf2 start
|
|
land_detector start multicopter
|
|
mc_hover_thrust_estimator start
|
|
flight_mode_manager start
|
|
mc_pos_control start
|
|
mc_att_control start
|
|
mc_rate_control start
|
|
|
|
mavlink start -x -u 14556 -r 1000000 -p
|
|
|
|
if [ -c /dev/ttyUSB0 ]
|
|
then
|
|
mavlink start -x -d /dev/ttyUSB0
|
|
elif [ -c /dev/ttyAMA0 ]
|
|
then
|
|
mavlink start -x -d /dev/ttyAMA0
|
|
fi
|
|
|
|
navio_sysfs_rc_in start
|
|
linux_pwm_out start
|
|
mixer load /dev/pwm_out etc/mixers/quad_x.main.mix
|
|
|
|
logger start -t -b 200
|
|
|
|
mavlink boot_complete
|