mirror of https://github.com/ArduPilot/ardupilot
AP_BoardConfig: drop target temperature for cube to 45
getting to 60 was taking far too long (15 minutes or so). 45 is more achievable. This is a result of the fix to the invensense temperature detection code
This commit is contained in:
parent
5616dc32d2
commit
6ce42a429b
|
@ -299,11 +299,11 @@ void AP_BoardConfig::px4_setup_drivers(void)
|
||||||
|
|
||||||
if (px4.board_type == PX4_BOARD_PH2SLIM ||
|
if (px4.board_type == PX4_BOARD_PH2SLIM ||
|
||||||
px4.board_type == PX4_BOARD_PIXHAWK2) {
|
px4.board_type == PX4_BOARD_PIXHAWK2) {
|
||||||
_imu_target_temperature.set_default(60);
|
_imu_target_temperature.set_default(45);
|
||||||
if (_imu_target_temperature.get() < 0) {
|
if (_imu_target_temperature.get() < 0) {
|
||||||
// don't allow a value of -1 on the cube, or it could cook
|
// don't allow a value of -1 on the cube, or it could cook
|
||||||
// the IMU
|
// the IMU
|
||||||
_imu_target_temperature.set(60);
|
_imu_target_temperature.set(45);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue