mirror of
https://github.com/betaflight/betaflight-configurator.git
synced 2025-07-23 16:25:22 +03:00
Convert dataflash tab to a new Blackbox tab with SD card support
This commit is contained in:
parent
b0d0f40c41
commit
4e12db9c5e
13 changed files with 1089 additions and 591 deletions
|
@ -174,7 +174,23 @@ var _3D = {
|
|||
|
||||
var DATAFLASH = {
|
||||
ready: false,
|
||||
supported: false,
|
||||
sectors: 0,
|
||||
totalSize: 0,
|
||||
usedSize: 0
|
||||
};
|
||||
|
||||
var SDCARD = {
|
||||
supported: false,
|
||||
state: 0,
|
||||
filesystemLastError: 0,
|
||||
freeSizeKB: 0,
|
||||
totalSizeKB: 0,
|
||||
};
|
||||
|
||||
var BLACKBOX = {
|
||||
supported: false,
|
||||
blackboxDevice: 0,
|
||||
blackboxRateNum: 1,
|
||||
blackboxRateDenom: 1
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue