There was an issue with the calibration button on _some_ flight controllers; after performing a fresh installation of INAV. This issue did not appear on my test F405-WING. I have moved the check to the FC object, and added extra checks for the default accelerometer values. Works as expected on my test FC.
Tab loading was relying on replacing the contents of '#content'
with the loading indicator, then replacing it with the loading tab
content and blocking rendering until the tab was ready by not
yielding. This is problematic for tabs that load some data
asynchronously, like PID and OSD.
Instead, put the loading indicator in front of everything else
and load new content inside '#content' next to the loading indicator
(but without showing it). Once the content and data are fully loaded
we fade out the loading indicator with a 0.4s long animation and
then we remove. This works for both synchronous and asynchonous
loading of tabs.