mirror of
https://gitee.com/mirrors_PX4/PX4-Autopilot.git
synced 2026-05-02 05:04:08 +08:00
Specify orientaiton of ADIS16448 IMU for EZG from autostart script
Specify orientaiton of ADIS16448 IMU for EZG from autostart script
This commit is contained in:
parent
0f4eaec6c1
commit
4a590c5fd6
@ -45,6 +45,7 @@ then
|
||||
param set PWM_DISARMED 1000
|
||||
|
||||
param set-default SENS_EN_ADIS164X 1
|
||||
param set SENS_EN_ADIS164X 4
|
||||
fi
|
||||
|
||||
set MIXER asl_easyglider
|
||||
|
||||
@ -111,7 +111,14 @@ fi
|
||||
# ADIS16448 spi external IMU
|
||||
if param compare -s SENS_EN_ADIS164X 1
|
||||
then
|
||||
adis16448 -S start
|
||||
if param compare -s SENS_OR_ADIS164X 0
|
||||
then
|
||||
adis16448 -S start
|
||||
fi
|
||||
if param compare -s SENS_OR_ADIS164X 4
|
||||
then
|
||||
adis16448 -S start -R 4
|
||||
fi
|
||||
fi
|
||||
|
||||
# Hall effect sensors si7210
|
||||
|
||||
@ -42,3 +42,15 @@
|
||||
* @value 1 Enabled
|
||||
*/
|
||||
PARAM_DEFINE_INT32(SENS_EN_ADIS164X, 0);
|
||||
|
||||
/**
|
||||
* Analog Devices ADIS16448 IMU Orientation(external SPI)
|
||||
*
|
||||
* @reboot_required true
|
||||
* @min 0
|
||||
* @max 101
|
||||
* @group Sensors
|
||||
* @value 0 ROTATION_NONE
|
||||
* @value 4 ROTATION_YAW_180
|
||||
*/
|
||||
PARAM_DEFINE_INT32(SENS_OR_ADIS164X, 0);
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user