1
0
Fork 0
mirror of https://github.com/iNavFlight/inav.git synced 2025-07-24 00:35:34 +03:00

Basic functions to check if sensors are healthy

This commit is contained in:
Konstantin Sharlaimov (DigitalEntity) 2016-11-15 21:55:39 +10:00
parent d7b570dc04
commit 15cb87fc0f
9 changed files with 45 additions and 7 deletions

View file

@ -224,3 +224,8 @@ void setAccelerationFilter(uint8_t initialAccLpfCutHz)
}
}
}
bool isAccelerometerHealthy(void)
{
return true;
}