mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-03-02 19:53:57 -04:00
Replay: show time of AHRS health change
This commit is contained in:
parent
5514a9f690
commit
f08f0ca2f9
@ -329,7 +329,9 @@ static void read_sensors(const char *type)
|
||||
dataflash.Log_Write_POS(ahrs);
|
||||
if (ahrs.healthy() != ahrs_healthy) {
|
||||
ahrs_healthy = ahrs.healthy();
|
||||
printf("AHRS health: %u\n", (unsigned)ahrs_healthy);
|
||||
printf("AHRS health: %u at %lu\n",
|
||||
(unsigned)ahrs_healthy,
|
||||
(unsigned long)hal.scheduler->millis());
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user