Merge pull request #684 from mikeller/fix_dataflash_unavailable_during_erase
Fix dataflash unavailable during erase10.3.x-maintenance
commit
ef9823f56f
|
@ -1000,7 +1000,7 @@ MspHelper.prototype.process_data = function(dataHandler) {
|
|||
if (data.byteLength >= 13) {
|
||||
var flags = data.readU8();
|
||||
DATAFLASH.ready = (flags & 1) != 0;
|
||||
DATAFLASH.supported = (flags & 2) != 0 || DATAFLASH.ready;
|
||||
DATAFLASH.supported = (flags & 2) != 0;
|
||||
DATAFLASH.sectors = data.readU32();
|
||||
DATAFLASH.totalSize = data.readU32();
|
||||
DATAFLASH.usedSize = data.readU32();
|
||||
|
|
|
@ -156,7 +156,7 @@ TABS.onboard_logging.initialize = function (callback) {
|
|||
|
||||
if (semver.gte(CONFIG.apiVersion, "1.33.0")) {
|
||||
deviceSelect.append('<option value="0">' + chrome.i18n.getMessage('blackboxLoggingNone') + '</option>');
|
||||
if (DATAFLASH.ready) {
|
||||
if (DATAFLASH.supported) {
|
||||
deviceSelect.append('<option value="1">' + chrome.i18n.getMessage('blackboxLoggingFlash') + '</option>');
|
||||
}
|
||||
if (SDCARD.supported) {
|
||||
|
|
Loading…
Reference in New Issue