betaflight-configurator/tabs/firmware_flasher.html

76 lines
2.3 KiB
HTML
Raw Normal View History

<style type="text/css">
.tab-firmware_flasher .info {
margin: 0 0 10px 0;
}
2013-11-13 09:56:14 +00:00
.tab-firmware_flasher .info strong {
margin-right: 5px;
}
.tab-firmware_flasher .note {
float: left;
margin-bottom: 10px;
padding: 5px;
border: 1px dotted silver;
}
.tab-firmware_flasher .note p {
2013-11-13 12:31:34 +00:00
margin-bottom: 5px;
2013-11-13 09:56:14 +00:00
}
.tab-firmware_flasher .note input {
2013-11-13 12:31:34 +00:00
float: left;
2013-11-13 09:56:14 +00:00
margin-top: 2px;
}
a.load_file, a.load_remote_file {
display: block;
float: left;
margin: 0 10px 0 0;
padding: 0 10px 0 10px;
height: 20px;
line-height: 20px;
text-align: center;
font-weight: bold;
border: 1px solid silver;
background-color: #ececec;
}
a.load_file:hover, a.load_remote_file:hover {
background-color: #dedcdc;
}
a.flash_firmware {
display: block;
float: left;
padding: 0 10px 0 10px;
height: 20px;
line-height: 20px;
text-align: center;
font-weight: bold;
border: 1px solid silver;
background-color: #ececec;
}
a.flash_firmware:hover {
background-color: #dedcdc;
}
</style>
<div class="tab-firmware_flasher">
<div class="info">
2013-11-13 09:56:14 +00:00
<strong>Path:</strong><span class="path">empty</span><br />
<strong>Size:</strong><span class="size">0.000 kb</span><br />
<strong>Status:</strong><span class="status">Firmware not loaded</span><br />
</div>
<div class="note">
<p>
2013-11-13 12:31:34 +00:00
If you are flashing board with <strong>baseflight</strong> already flashed (updating), leave this checkbox unchecked.<br />
If you are flashing "<strong>bare</strong>" board with no firmware preloaded or you have bootloader pins <strong>shorted</strong>, check this box.<br />
2013-11-13 09:56:14 +00:00
</p>
2013-11-13 12:31:34 +00:00
<span style="float: left; font-weight: bold; margin-right: 6px;">Reboot sequence:</span><input class="updating" type="checkbox" />
</div>
2013-11-13 09:56:14 +00:00
<div class="clear-both"></div>
<a class="load_file" href="#">Load Firmware [Local]</a>
<a class="load_remote_file" href="#">Load Firmware [Online]</a>
<a class="flash_firmware" href="#">Flash Firmware</a>
</div>