Merge remote-tracking branch 'upstream/master' into links-in-welcome-tab

10.3.x-maintenance
Rodrigo Pérez 2016-08-08 15:47:44 -04:00
commit 103605d59e
2 changed files with 5 additions and 1 deletions

View File

@ -1629,6 +1629,10 @@ MSP.crunch = function (code) {
buffer.push(RC_deadband.deadband);
buffer.push(RC_deadband.yaw_deadband);
buffer.push(RC_deadband.alt_hold_deadband);
if (semver.gte(CONFIG.apiVersion, "1.17.0")) {
buffer.push(lowByte(_3D.deadband3d_throttle));
buffer.push(highByte(_3D.deadband3d_throttle));
}
break;
case MSP_codes.MSP_SET_SENSOR_ALIGNMENT:

View File

@ -230,7 +230,7 @@ TABS.logging.initialize = function (callback) {
function prepare_file() {
// create or load the file
chrome.fileSystem.chooseEntry({type: 'saveFile', suggestedName: 'cleanflight_data_log', accepts: [{extensions: ['csv']}]}, function(entry) {
chrome.fileSystem.chooseEntry({type: 'saveFile', suggestedName: 'betaflight_data_log', accepts: [{extensions: ['csv']}]}, function(entry) {
if (!entry) {
console.log('No file selected');
return;