1
0
Fork 0
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:
Nicholas Sherlock 2015-11-30 20:36:47 +13:00
parent b0d0f40c41
commit 4e12db9c5e
13 changed files with 1089 additions and 591 deletions

View file

@ -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
};