mirror of
https://github.com/PX4/PX4-Autopilot.git
synced 2026-06-01 11:06:04 +08:00
Fixes to estimator and HIL startup script
This commit is contained in:
@@ -54,13 +54,13 @@ sh /etc/init.d/rc.sensors
|
|||||||
#
|
#
|
||||||
# Start the attitude estimator (depends on orb)
|
# Start the attitude estimator (depends on orb)
|
||||||
#
|
#
|
||||||
kalman_demo start
|
att_pos_estimator_ekf start
|
||||||
|
|
||||||
#
|
#
|
||||||
# Load mixer and start controllers (depends on px4io)
|
# Load mixer and start controllers (depends on px4io)
|
||||||
#
|
#
|
||||||
mixer load /dev/pwm_output /etc/mixers/FMU_AET.mix
|
mixer load /dev/pwm_output /etc/mixers/FMU_AET.mix
|
||||||
control_demo start
|
fixedwing_backside start
|
||||||
|
|
||||||
echo "[HIL] setup done, running"
|
echo "[HIL] setup done, running"
|
||||||
|
|
||||||
|
|||||||
@@ -262,7 +262,7 @@ void KalmanNav::update()
|
|||||||
lat, lon, alt);
|
lat, lon, alt);
|
||||||
}
|
}
|
||||||
|
|
||||||
// prediciton step
|
// prediction step
|
||||||
// using sensors timestamp so we can account for packet lag
|
// using sensors timestamp so we can account for packet lag
|
||||||
float dt = (_sensors.timestamp - _predictTimeStamp) / 1.0e6f;
|
float dt = (_sensors.timestamp - _predictTimeStamp) / 1.0e6f;
|
||||||
//printf("dt: %15.10f\n", double(dt));
|
//printf("dt: %15.10f\n", double(dt));
|
||||||
|
|||||||
@@ -36,10 +36,10 @@
|
|||||||
/*PARAM_DEFINE_FLOAT(NAME,0.0f);*/
|
/*PARAM_DEFINE_FLOAT(NAME,0.0f);*/
|
||||||
PARAM_DEFINE_FLOAT(KF_V_GYRO, 0.008f);
|
PARAM_DEFINE_FLOAT(KF_V_GYRO, 0.008f);
|
||||||
PARAM_DEFINE_FLOAT(KF_V_ACCEL, 1.0f);
|
PARAM_DEFINE_FLOAT(KF_V_ACCEL, 1.0f);
|
||||||
PARAM_DEFINE_FLOAT(KF_R_MAG, 1.0f);
|
PARAM_DEFINE_FLOAT(KF_R_MAG, 0.8f);
|
||||||
PARAM_DEFINE_FLOAT(KF_R_GPS_VEL, 1.0f);
|
PARAM_DEFINE_FLOAT(KF_R_GPS_VEL, 0.5f);
|
||||||
PARAM_DEFINE_FLOAT(KF_R_GPS_POS, 5.0f);
|
PARAM_DEFINE_FLOAT(KF_R_GPS_POS, 2.0f);
|
||||||
PARAM_DEFINE_FLOAT(KF_R_GPS_ALT, 5.0f);
|
PARAM_DEFINE_FLOAT(KF_R_GPS_ALT, 3.0f);
|
||||||
PARAM_DEFINE_FLOAT(KF_R_PRESS_ALT, 0.1f);
|
PARAM_DEFINE_FLOAT(KF_R_PRESS_ALT, 0.1f);
|
||||||
PARAM_DEFINE_FLOAT(KF_R_ACCEL, 1.0f);
|
PARAM_DEFINE_FLOAT(KF_R_ACCEL, 1.0f);
|
||||||
PARAM_DEFINE_FLOAT(KF_FAULT_POS, 10.0f);
|
PARAM_DEFINE_FLOAT(KF_FAULT_POS, 10.0f);
|
||||||
|
|||||||
Reference in New Issue
Block a user