mirror of
https://github.com/betaflight/betaflight.git
synced 2025-07-25 17:25:20 +03:00
initial set of properties
This commit is contained in:
parent
fa90030759
commit
c40c783ddc
2 changed files with 24 additions and 3 deletions
|
@ -7,6 +7,24 @@
|
||||||
.tab-logging .properties {
|
.tab-logging .properties {
|
||||||
margin-top: 10px;
|
margin-top: 10px;
|
||||||
}
|
}
|
||||||
|
.tab-logging .properties dt {
|
||||||
|
float: left;
|
||||||
|
width: 120px;
|
||||||
|
height: 20px;
|
||||||
|
line-height: 20px;
|
||||||
|
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
||||||
|
.tab-logging .properties dt input {
|
||||||
|
vertical-align: middle;
|
||||||
|
}
|
||||||
|
.tab-logging .properties dd {
|
||||||
|
display: block;
|
||||||
|
margin-left: 130px;
|
||||||
|
height: 20px;
|
||||||
|
line-height: 20px;
|
||||||
|
color: silver;
|
||||||
|
}
|
||||||
.tab-logging .buttons {
|
.tab-logging .buttons {
|
||||||
margin-top: 10px;
|
margin-top: 10px;
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,11 +1,14 @@
|
||||||
<div class="tab-logging">
|
<div class="tab-logging">
|
||||||
<div class="note">
|
<div class="note">
|
||||||
Data will be logged in this tab <span style="color: red">only</span>, leaving this tab will <span style="color: red">cancel</span> logging and application will return to its normal <strong>"configurator"</strong> operation.<br />
|
Data will be logged in this tab <span style="color: red">only</span>, leaving this tab will <span style="color: red">cancel</span> logging and application will return to its normal <strong>"configurator"</strong> operation.<br />
|
||||||
Logged <strong>CSV</strong> data will respect properties order below, some of the properties will log more then 1 field, in that case please consult documentation or sourcecode
|
You are free to select the global update period, data will be written into the log file every <strong>1</strong> second.
|
||||||
to find out the order and amount of fields per property.<br />
|
|
||||||
You are free to select the global update period, data will be written into the log file every 1 second.
|
|
||||||
</div>
|
</div>
|
||||||
<div class="properties">
|
<div class="properties">
|
||||||
|
<dl>
|
||||||
|
<dt><label><input type="checkbox" name="MSP_RAW_IMU" /> MSP_RAW_IMU</label></dt><dd>9 columns (accel[x, y, z], gyro[x, y, z], mag[x, y, z])</dd>
|
||||||
|
<dt><label><input type="checkbox" name="MSP_ATTITUDE" /> MSP_ATTITUDE</label></dt><dd>3 columns (x, y, z)</dd>
|
||||||
|
<dt><label><input type="checkbox" name="MSP_ALTITUDE" /> MSP_ALTITUDE</label></dt><dd>one column</dd>
|
||||||
|
</dl>
|
||||||
</div>
|
</div>
|
||||||
<div class="buttons">
|
<div class="buttons">
|
||||||
<a href="#" class="log_file">Select Log File</a>
|
<a href="#" class="log_file">Select Log File</a>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue