mirror of
https://bitbucket.org/librepilot/librepilot.git
synced 2024-12-02 10:24:11 +01:00
OP-1662 Add info : Config, Mag, PathPlan, Attitude/Stabilization alarm
This commit is contained in:
parent
f6c9183dbf
commit
bc5fb14bc9
@ -7,7 +7,11 @@
|
||||
<body>
|
||||
<h1>Attitude : Critical</h1>
|
||||
<p>
|
||||
This alarm will remain set until data is received from the accelerometer.
|
||||
One of the following conditions may be present:
|
||||
<ul>
|
||||
<li>No data is received from the accelerometer</li>
|
||||
<li>Waiting good data from Magnetometer or GPS lock to perform module initialization.</li>
|
||||
</ul>
|
||||
</p>
|
||||
</body>
|
||||
</html>
|
@ -0,0 +1,18 @@
|
||||
<html>
|
||||
<head>
|
||||
<title></title>
|
||||
<meta content="">
|
||||
<style></style>
|
||||
</head>
|
||||
<body>
|
||||
<h1>Magnetometer : Critical</h1>
|
||||
<p>
|
||||
Data is coming from the magnetometer, but the readings are off by over 15%. This can be caused by various reasons:
|
||||
</p>
|
||||
<ul>
|
||||
<li>Magnetometer has not been calibrated.</li>
|
||||
<li>Something is interfering with the magnetometer.</li>
|
||||
</ul>
|
||||
</p>
|
||||
</body>
|
||||
</html>
|
@ -0,0 +1,13 @@
|
||||
<html>
|
||||
<head>
|
||||
<title></title>
|
||||
<meta content="">
|
||||
<style></style>
|
||||
</head>
|
||||
<body>
|
||||
<h1>Magnetometer : Warning</h1>
|
||||
<p>
|
||||
Magnetometer readings are off by over 5%
|
||||
</p>
|
||||
</body>
|
||||
</html>
|
@ -0,0 +1,13 @@
|
||||
<html>
|
||||
<head>
|
||||
<title></title>
|
||||
<meta content="">
|
||||
<style></style>
|
||||
</head>
|
||||
<body>
|
||||
<h1>Pathplanner : Warning</h1>
|
||||
<p>
|
||||
No path plan has been uploaded. Not a problem if you don't intend to do autonomous missions right now.
|
||||
</p>
|
||||
</body>
|
||||
</html>
|
@ -0,0 +1,17 @@
|
||||
<html>
|
||||
<head>
|
||||
<title></title>
|
||||
<meta content="">
|
||||
<style></style>
|
||||
</head>
|
||||
<body>
|
||||
<h1>Stabilization : Critical</h1>
|
||||
<p>
|
||||
One of the following conditions may be present:
|
||||
<ul>
|
||||
<li>Something wrong with Stabilization module</li>
|
||||
<li>Waiting good data from Magnetometer or GPS lock to perform module initialization.</li>
|
||||
</ul>
|
||||
</p>
|
||||
</body>
|
||||
</html>
|
@ -0,0 +1,19 @@
|
||||
<html>
|
||||
<head>
|
||||
<title></title>
|
||||
<meta content="">
|
||||
<style></style>
|
||||
</head>
|
||||
<body>
|
||||
<h1>System Configuration : Critical</h1>
|
||||
<p>
|
||||
One of the following conditions may be present:
|
||||
<ul>
|
||||
<li>
|
||||
<p>You have set up GPS modes (PosHold, RTB) to flight mode switch, and you still use "Basic (Complementary)" fusion algorithm.</p>
|
||||
<p> Select "GPS Navigation (INS13)" in Config -> Attitude Tab -> Parameters -> Attitude Estimation Algorithm.</p>
|
||||
</li>
|
||||
</ul>
|
||||
</p>
|
||||
</body>
|
||||
</html>
|
@ -5,9 +5,13 @@
|
||||
<style></style>
|
||||
</head>
|
||||
<body>
|
||||
<h1>Attitude : Critique</h1>
|
||||
<h1>Attitude : Critical</h1>
|
||||
<p>
|
||||
Cette alarme reste activée jusqu'à ce que des données soient reçues de l'accéléromètre.
|
||||
One of the following conditions may be present:
|
||||
<ul>
|
||||
<li>No data is received from the accelerometer</li>
|
||||
<li>Waiting good data from Magnetometer or GPS lock to perform module initialization.</li>
|
||||
</ul>
|
||||
</p>
|
||||
</body>
|
||||
</html>
|
||||
|
@ -0,0 +1,18 @@
|
||||
<html>
|
||||
<head>
|
||||
<title></title>
|
||||
<meta content="">
|
||||
<style></style>
|
||||
</head>
|
||||
<body>
|
||||
<h1>Magnetometer : Critical</h1>
|
||||
<p>
|
||||
Data is coming from the magnetometer, but the readings are off by over 15%. This can be caused by various reasons:
|
||||
</p>
|
||||
<ul>
|
||||
<li>Magnetometer has not been calibrated.</li>
|
||||
<li>Something is interfering with the magnetometer. (High currents)</li>
|
||||
</ul>
|
||||
</p>
|
||||
</body>
|
||||
</html>
|
@ -0,0 +1,13 @@
|
||||
<html>
|
||||
<head>
|
||||
<title></title>
|
||||
<meta content="">
|
||||
<style></style>
|
||||
</head>
|
||||
<body>
|
||||
<h1>Magnetometer : Warning</h1>
|
||||
<p>
|
||||
Magnetometer readings are off by over 5%
|
||||
</p>
|
||||
</body>
|
||||
</html>
|
@ -0,0 +1,13 @@
|
||||
<html>
|
||||
<head>
|
||||
<title></title>
|
||||
<meta content="">
|
||||
<style></style>
|
||||
</head>
|
||||
<body>
|
||||
<h1>Pathplanner: Warning</h1>
|
||||
<p>
|
||||
No path plan has been uploaded. Not a problem if you don't intend to do autonomous missions right now.
|
||||
</p>
|
||||
</body>
|
||||
</html>
|
@ -0,0 +1,17 @@
|
||||
<html>
|
||||
<head>
|
||||
<title></title>
|
||||
<meta content="">
|
||||
<style></style>
|
||||
</head>
|
||||
<body>
|
||||
<h1>Stabilization : Critical</h1>
|
||||
<p>
|
||||
One of the following conditions may be present:
|
||||
<ul>
|
||||
<li>Something wrong with Stabilization module</li>
|
||||
<li>Waiting good data from Magnetometer or GPS lock to perform module initialization.</li>
|
||||
</ul>
|
||||
</p>
|
||||
</body>
|
||||
</html>
|
@ -0,0 +1,19 @@
|
||||
<html>
|
||||
<head>
|
||||
<title></title>
|
||||
<meta content="">
|
||||
<style></style>
|
||||
</head>
|
||||
<body>
|
||||
<h1>System Configuration : Critical</h1>
|
||||
<p>
|
||||
One of the following conditions may be present:
|
||||
<ul>
|
||||
<li>
|
||||
<p>You have set up GPS modes (PosHold, RTB) to flight mode switch, and you still use "Basic (Complementary)" fusion algorithm.</p>
|
||||
<p> Select "GPS Navigation (INS13)" in Config -> Attitude Tab -> Parameters -> Attitude Estimation Algorithm.</p>
|
||||
</li>
|
||||
</ul>
|
||||
</p>
|
||||
</body>
|
||||
</html>
|
@ -26,6 +26,11 @@
|
||||
<file>html/Stabilization-Warning.html</file>
|
||||
<file>html/Stack-Critical.html</file>
|
||||
<file>html/Telemetry-Error.html</file>
|
||||
<file>html/SystemConfiguration-Critical.html</file>
|
||||
<file>html/PathPlan-Warning.html</file>
|
||||
<file>html/Magnetometer-Critical.html</file>
|
||||
<file>html/Magnetometer-Warning.html</file>
|
||||
<file>html/Stabilization-Critical.html</file>
|
||||
</qresource>
|
||||
<qresource prefix="/systemhealth" lang="fr">
|
||||
<file alias="html/Actuator-Critical.html">html/fr/Actuator-Critical.html</file>
|
||||
@ -54,6 +59,11 @@
|
||||
<file alias="html/Stabilization-Warning.html">html/fr/Stabilization-Warning.html</file>
|
||||
<file alias="html/Stack-Critical.html">html/fr/Stack-Critical.html</file>
|
||||
<file alias="html/Telemetry-Error.html">html/fr/Telemetry-Error.html</file>
|
||||
<file alias="html/SystemConfiguration-Critical.html">html/fr/SystemConfiguration-Critical.html</file>
|
||||
<file alias="html/PathPlan-Warning.html">html/fr/PathPlan-Warning.html</file>
|
||||
<file alias="html/Magnetometer-Warning.html">html/fr/Magnetometer-Warning.html</file>
|
||||
<file alias="html/Magnetometer-Critical.html">html/fr/Magnetometer-Critical.html</file>
|
||||
<file alias="html/Stabilization-Critical.html">html/fr/Stabilization-Critical.html</file>
|
||||
</qresource>
|
||||
|
||||
</RCC>
|
||||
|
Loading…
Reference in New Issue
Block a user