commit
58d0381097
|
@ -518,6 +518,9 @@
|
||||||
"portsHelp": {
|
"portsHelp": {
|
||||||
"message": "Configure serial ports. <strong>Note:</strong> not all combinations are valid. When the flight controller firmware detects this the serial port configuration will be reset."
|
"message": "Configure serial ports. <strong>Note:</strong> not all combinations are valid. When the flight controller firmware detects this the serial port configuration will be reset."
|
||||||
},
|
},
|
||||||
|
"portsFirmwareUpgradeRequired": {
|
||||||
|
"message": "Firmware upgrade <span style=\"color: red\">required</span>. Serial port configurations of firmware < 1.8.0 is not supported."
|
||||||
|
},
|
||||||
"portsButtonSave": {
|
"portsButtonSave": {
|
||||||
"message": "Save and Reboot"
|
"message": "Save and Reboot"
|
||||||
},
|
},
|
||||||
|
@ -567,6 +570,12 @@
|
||||||
"pidTuningRollPitchRate": {
|
"pidTuningRollPitchRate": {
|
||||||
"message": "ROLL & PITCH rate"
|
"message": "ROLL & PITCH rate"
|
||||||
},
|
},
|
||||||
|
"pidTuningRollRate": {
|
||||||
|
"message": "ROLL rate"
|
||||||
|
},
|
||||||
|
"pidTuningPitchRate": {
|
||||||
|
"message": "PITCH rate"
|
||||||
|
},
|
||||||
"pidTuningYawRate": {
|
"pidTuningYawRate": {
|
||||||
"message": "YAW rate"
|
"message": "YAW rate"
|
||||||
},
|
},
|
||||||
|
@ -893,6 +902,9 @@
|
||||||
"dataflashNotSupportedNote": {
|
"dataflashNotSupportedNote": {
|
||||||
"message": "Your flight controller does not have a compatible dataflash chip available."
|
"message": "Your flight controller does not have a compatible dataflash chip available."
|
||||||
},
|
},
|
||||||
|
"dataflashFirmwareUpgradeRequired": {
|
||||||
|
"message": "Dataflash requires firmware >= 1.8.0."
|
||||||
|
},
|
||||||
"dataflashButtonSaveFile": {
|
"dataflashButtonSaveFile": {
|
||||||
"message": "Save flash to file..."
|
"message": "Save flash to file..."
|
||||||
},
|
},
|
||||||
|
|
|
@ -3,9 +3,6 @@
|
||||||
- PID Tuning tab allows TPA Breakpoint changes - Requires 1.8.0 firmware.<br />
|
- PID Tuning tab allows TPA Breakpoint changes - Requires 1.8.0 firmware.<br />
|
||||||
- Corrected Artificial Horizon Pitch/Roll views.<br />
|
- Corrected Artificial Horizon Pitch/Roll views.<br />
|
||||||
- Changed logging time stamp to include date stamp.<br />
|
- Changed logging time stamp to include date stamp.<br />
|
||||||
</p>
|
|
||||||
<span>2015.03.03 - 0.63 - cleanflight</span>
|
|
||||||
<p>
|
|
||||||
- Support new firmware 1.8 serial port configuration.<br />
|
- Support new firmware 1.8 serial port configuration.<br />
|
||||||
- Move documentation and help to new tab.<br />
|
- Move documentation and help to new tab.<br />
|
||||||
- Add contributing section to welcome tab.<br />
|
- Add contributing section to welcome tab.<br />
|
||||||
|
|
|
@ -102,7 +102,7 @@ function configuration_backup(callback) {
|
||||||
configuration.RCMAP = jQuery.extend(true, [], RC_MAP);
|
configuration.RCMAP = jQuery.extend(true, [], RC_MAP);
|
||||||
configuration.BF_CONFIG = jQuery.extend(true, {}, BF_CONFIG);
|
configuration.BF_CONFIG = jQuery.extend(true, {}, BF_CONFIG);
|
||||||
configuration.SERIAL_CONFIG = jQuery.extend(true, {}, SERIAL_CONFIG);
|
configuration.SERIAL_CONFIG = jQuery.extend(true, {}, SERIAL_CONFIG);
|
||||||
configuration.LED_STRIP = jQuery.extend(true, {}, LED_STRIP);
|
configuration.LED_STRIP = jQuery.extend(true, [], LED_STRIP);
|
||||||
|
|
||||||
save();
|
save();
|
||||||
}
|
}
|
||||||
|
@ -330,6 +330,77 @@ function configuration_restore(callback) {
|
||||||
appliedMigrationsCount++;
|
appliedMigrationsCount++;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (!compareVersions(migratedVersion, '0.63.0')) {
|
||||||
|
|
||||||
|
// LED Strip was saved as object instead of array.
|
||||||
|
if (typeof(configuration.LED_STRIP) == 'object') {
|
||||||
|
var fixed_led_strip = [];
|
||||||
|
|
||||||
|
var index = 0;
|
||||||
|
while (configuration.LED_STRIP[index]) {
|
||||||
|
fixed_led_strip.push(configuration.LED_STRIP[index++]);
|
||||||
|
}
|
||||||
|
configuration.LED_STRIP = fixed_led_strip;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// Serial configuation redesigned
|
||||||
|
var ports = [];
|
||||||
|
for (var portIndex = 0; portIndex < configuration.SERIAL_CONFIG.ports.length; portIndex++) {
|
||||||
|
var oldPort = configuration.SERIAL_CONFIG.ports[portIndex];
|
||||||
|
|
||||||
|
var newPort = {
|
||||||
|
identifier: oldPort.identifier,
|
||||||
|
functionMask: 0,
|
||||||
|
msp_baudrate: configuration.SERIAL_CONFIG.mspBaudRate,
|
||||||
|
gps_baudrate: configuration.SERIAL_CONFIG.gpsBaudRate,
|
||||||
|
telemetry_baudrate: 0, // auto
|
||||||
|
blackbox_baudrate: 5, // 115200
|
||||||
|
};
|
||||||
|
|
||||||
|
switch(oldPort.scenario) {
|
||||||
|
case 1: // MSP, CLI, TELEMETRY, SMARTPORT TELEMETRY, GPS-PASSTHROUGH
|
||||||
|
case 5: // MSP, CLI, GPS-PASSTHROUGH
|
||||||
|
case 8: // MSP ONLY
|
||||||
|
newPort.functionMask = 1; // FUCNTION_MSP
|
||||||
|
break;
|
||||||
|
case 2: // GPS
|
||||||
|
newPort.functionMask = 2; // FUNCTION_GPS
|
||||||
|
break;
|
||||||
|
case 3: // RX_SERIAL
|
||||||
|
newPort.functionMask = 64; // FUNCTION_RX_SERIAL
|
||||||
|
break;
|
||||||
|
case 10: // BLACKBOX ONLY
|
||||||
|
newPort.functionMask = 128; // FUNCTION_BLACKBOX
|
||||||
|
break;
|
||||||
|
case 11: // MSP, CLI, BLACKBOX, GPS-PASSTHROUGH
|
||||||
|
newPort.functionMask = 1 + 128; // FUNCTION_BLACKBOX
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
ports.push(newPort);
|
||||||
|
}
|
||||||
|
configuration.SERIAL_CONFIG = {
|
||||||
|
ports: ports
|
||||||
|
};
|
||||||
|
|
||||||
|
for (var profileIndex = 0; profileIndex < 3; profileIndex++) {
|
||||||
|
var RC = configuration.profiles[profileIndex].RC;
|
||||||
|
// TPA breakpoint was added
|
||||||
|
if (!RC.dynamic_THR_breakpoint) {
|
||||||
|
RC.dynamic_THR_breakpoint = 1500; // firmware default
|
||||||
|
}
|
||||||
|
|
||||||
|
// Roll and pitch rates were split
|
||||||
|
RC.roll_rate = RC.roll_pitch_rate;
|
||||||
|
RC.pitch_rate = RC.roll_pitch_rate;
|
||||||
|
}
|
||||||
|
|
||||||
|
migratedVersion = '0.63.0';
|
||||||
|
GUI.log(chrome.i18n.getMessage('configMigratedTo', [migratedVersion]));
|
||||||
|
appliedMigrationsCount++;
|
||||||
|
}
|
||||||
|
|
||||||
GUI.log(chrome.i18n.getMessage('configMigrationSuccessful', [appliedMigrationsCount]));
|
GUI.log(chrome.i18n.getMessage('configMigrationSuccessful', [appliedMigrationsCount]));
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
|
@ -3,9 +3,9 @@
|
||||||
var CONFIGURATOR = {
|
var CONFIGURATOR = {
|
||||||
'releaseDate': 1424462791805, // new Date().getTime() - 2015.02.20
|
'releaseDate': 1424462791805, // new Date().getTime() - 2015.02.20
|
||||||
'apiVersionAccepted': 1.2,
|
'apiVersionAccepted': 1.2,
|
||||||
'backupRestoreMinApiVersionAccepted': 1.6,
|
'backupRestoreMinApiVersionAccepted': 1.5,
|
||||||
'pidControllerChangeMinApiVersion': 1.5,
|
'pidControllerChangeMinApiVersion': 1.5,
|
||||||
'backupFileMinVersionAccepted': '0.63', // chrome.runtime.getManifest().version is stored as string, so does this one
|
'backupFileMinVersionAccepted': '0.55', // chrome.runtime.getManifest().version is stored as string, so does this one
|
||||||
'connectionValid': false,
|
'connectionValid': false,
|
||||||
'connectionValidCliOnly': false,
|
'connectionValidCliOnly': false,
|
||||||
'cliActive': false,
|
'cliActive': false,
|
||||||
|
@ -65,7 +65,9 @@ var RC = {
|
||||||
var RC_tuning = {
|
var RC_tuning = {
|
||||||
RC_RATE: 0,
|
RC_RATE: 0,
|
||||||
RC_EXPO: 0,
|
RC_EXPO: 0,
|
||||||
roll_pitch_rate: 0,
|
roll_pitch_rate: 0, // pre 1.7 api only
|
||||||
|
roll_rate: 0,
|
||||||
|
pitch_rate: 0,
|
||||||
yaw_rate: 0,
|
yaw_rate: 0,
|
||||||
dynamic_THR_PID: 0,
|
dynamic_THR_PID: 0,
|
||||||
throttle_MID: 0,
|
throttle_MID: 0,
|
||||||
|
@ -87,6 +89,8 @@ var SERVO_CONFIG = [];
|
||||||
|
|
||||||
var SERIAL_CONFIG = {
|
var SERIAL_CONFIG = {
|
||||||
ports: [],
|
ports: [],
|
||||||
|
|
||||||
|
// pre 1.6 settings
|
||||||
mspBaudRate: 0,
|
mspBaudRate: 0,
|
||||||
gpsBaudRate: 0,
|
gpsBaudRate: 0,
|
||||||
gpsPassthroughBaudRate: 0,
|
gpsPassthroughBaudRate: 0,
|
||||||
|
|
File diff suppressed because one or more lines are too long
41
js/msp.js
41
js/msp.js
|
@ -108,7 +108,9 @@ var MSP = {
|
||||||
'19200',
|
'19200',
|
||||||
'38400',
|
'38400',
|
||||||
'57600',
|
'57600',
|
||||||
'115200'
|
'115200',
|
||||||
|
'230400',
|
||||||
|
'250000',
|
||||||
],
|
],
|
||||||
|
|
||||||
serialPortFunctions: // in LSB bit order
|
serialPortFunctions: // in LSB bit order
|
||||||
|
@ -288,14 +290,22 @@ var MSP = {
|
||||||
ANALOG.amperage = data.getInt16(5, 1) / 100; // A
|
ANALOG.amperage = data.getInt16(5, 1) / 100; // A
|
||||||
break;
|
break;
|
||||||
case MSP_codes.MSP_RC_TUNING:
|
case MSP_codes.MSP_RC_TUNING:
|
||||||
RC_tuning.RC_RATE = parseFloat((data.getUint8(0) / 100).toFixed(2));
|
var offset = 0;
|
||||||
RC_tuning.RC_EXPO = parseFloat((data.getUint8(1) / 100).toFixed(2));
|
RC_tuning.RC_RATE = parseFloat((data.getUint8(offset++) / 100).toFixed(2));
|
||||||
RC_tuning.roll_pitch_rate = parseFloat((data.getUint8(2) / 100).toFixed(2));
|
RC_tuning.RC_EXPO = parseFloat((data.getUint8(offset++) / 100).toFixed(2));
|
||||||
RC_tuning.yaw_rate = parseFloat((data.getUint8(3) / 100).toFixed(2));
|
if (CONFIG.apiVersion < 1.7) {
|
||||||
RC_tuning.dynamic_THR_PID = parseFloat((data.getUint8(4) / 100).toFixed(2));
|
RC_tuning.roll_pitch_rate = parseFloat((data.getUint8(offset++) / 100).toFixed(2));
|
||||||
RC_tuning.throttle_MID = parseFloat((data.getUint8(5) / 100).toFixed(2));
|
} else {
|
||||||
RC_tuning.throttle_EXPO = parseFloat((data.getUint8(6) / 100).toFixed(2));
|
RC_tuning.roll_rate = parseFloat((data.getUint8(offset++) / 100).toFixed(2));
|
||||||
RC_tuning.dynamic_THR_breakpoint = parseInt(data.getUint16(7, 1));
|
RC_tuning.pitch_rate = parseFloat((data.getUint8(offset++) / 100).toFixed(2));
|
||||||
|
}
|
||||||
|
RC_tuning.yaw_rate = parseFloat((data.getUint8(offset++) / 100).toFixed(2));
|
||||||
|
RC_tuning.dynamic_THR_PID = parseFloat((data.getUint8(offset++) / 100).toFixed(2));
|
||||||
|
RC_tuning.throttle_MID = parseFloat((data.getUint8(offset++) / 100).toFixed(2));
|
||||||
|
RC_tuning.throttle_EXPO = parseFloat((data.getUint8(offset++) / 100).toFixed(2));
|
||||||
|
if (CONFIG.apiVersion >= 1.7) {
|
||||||
|
RC_tuning.dynamic_THR_breakpoint = data.getUint16(offset++, 1);
|
||||||
|
}
|
||||||
break;
|
break;
|
||||||
case MSP_codes.MSP_PID:
|
case MSP_codes.MSP_PID:
|
||||||
// PID data arrived, we need to scale it and save to appropriate bank / array
|
// PID data arrived, we need to scale it and save to appropriate bank / array
|
||||||
|
@ -913,13 +923,20 @@ MSP.crunch = function (code) {
|
||||||
case MSP_codes.MSP_SET_RC_TUNING:
|
case MSP_codes.MSP_SET_RC_TUNING:
|
||||||
buffer.push(parseInt(RC_tuning.RC_RATE * 100));
|
buffer.push(parseInt(RC_tuning.RC_RATE * 100));
|
||||||
buffer.push(parseInt(RC_tuning.RC_EXPO * 100));
|
buffer.push(parseInt(RC_tuning.RC_EXPO * 100));
|
||||||
buffer.push(parseInt(RC_tuning.roll_pitch_rate * 100));
|
if (CONFIG.apiVersion < 1.7) {
|
||||||
|
buffer.push(parseInt(RC_tuning.roll_pitch_rate * 100));
|
||||||
|
} else {
|
||||||
|
buffer.push(parseInt(RC_tuning.roll_rate * 100));
|
||||||
|
buffer.push(parseInt(RC_tuning.pitch_rate * 100));
|
||||||
|
}
|
||||||
buffer.push(parseInt(RC_tuning.yaw_rate * 100));
|
buffer.push(parseInt(RC_tuning.yaw_rate * 100));
|
||||||
buffer.push(parseInt(RC_tuning.dynamic_THR_PID * 100));
|
buffer.push(parseInt(RC_tuning.dynamic_THR_PID * 100));
|
||||||
buffer.push(parseInt(RC_tuning.throttle_MID * 100));
|
buffer.push(parseInt(RC_tuning.throttle_MID * 100));
|
||||||
buffer.push(parseInt(RC_tuning.throttle_EXPO * 100));
|
buffer.push(parseInt(RC_tuning.throttle_EXPO * 100));
|
||||||
buffer.push(lowByte(RC_tuning.dynamic_THR_breakpoint));
|
if (CONFIG.apiVersion >= 1.7) {
|
||||||
buffer.push(highByte(RC_tuning.dynamic_THR_breakpoint));
|
buffer.push(lowByte(RC_tuning.dynamic_THR_breakpoint));
|
||||||
|
buffer.push(highByte(RC_tuning.dynamic_THR_breakpoint));
|
||||||
|
}
|
||||||
break;
|
break;
|
||||||
// Disabled, cleanflight does not use MSP_SET_BOX.
|
// Disabled, cleanflight does not use MSP_SET_BOX.
|
||||||
/*
|
/*
|
||||||
|
|
|
@ -62,6 +62,6 @@
|
||||||
<a href="#" class="save-flash" i18n="dataflashButtonSaveFile"></a>
|
<a href="#" class="save-flash" i18n="dataflashButtonSaveFile"></a>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="note require-no-dataflash" i18n="dataflashNotSupportedNote">
|
<div class="note require-no-dataflash">
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
|
@ -1,6 +1,8 @@
|
||||||
'use strict';
|
'use strict';
|
||||||
|
|
||||||
TABS.dataflash = {};
|
TABS.dataflash = {
|
||||||
|
available: false
|
||||||
|
};
|
||||||
TABS.dataflash.initialize = function (callback) {
|
TABS.dataflash.initialize = function (callback) {
|
||||||
var
|
var
|
||||||
self = this,
|
self = this,
|
||||||
|
@ -18,10 +20,19 @@ TABS.dataflash.initialize = function (callback) {
|
||||||
log_buffer = [];
|
log_buffer = [];
|
||||||
|
|
||||||
if (CONFIGURATOR.connectionValid) {
|
if (CONFIGURATOR.connectionValid) {
|
||||||
MSP.send_message(MSP_codes.MSP_DATAFLASH_SUMMARY, false, false, function() {
|
TABS.dataflash.available = (CONFIG.apiVersion >= 1.6)
|
||||||
$('#content').load("./tabs/dataflash.html", function() {
|
|
||||||
create_html();
|
if (!TABS.dataflash.available) {
|
||||||
});
|
load_html();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
MSP.send_message(MSP_codes.MSP_DATAFLASH_SUMMARY, false, false, load_html);
|
||||||
|
}
|
||||||
|
|
||||||
|
function load_html() {
|
||||||
|
$('#content').load("./tabs/dataflash.html", function() {
|
||||||
|
create_html();
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -71,28 +82,36 @@ TABS.dataflash.initialize = function (callback) {
|
||||||
}
|
}
|
||||||
|
|
||||||
function create_html() {
|
function create_html() {
|
||||||
var
|
|
||||||
supportsDataflash = DATAFLASH.totalSize > 0;
|
|
||||||
|
|
||||||
// translate to user-selected language
|
// translate to user-selected language
|
||||||
localize();
|
localize();
|
||||||
|
|
||||||
$(".tab-dataflash").toggleClass("supported", supportsDataflash);
|
if (TABS.dataflash.available) {
|
||||||
|
var supportsDataflash = DATAFLASH.totalSize > 0;
|
||||||
|
|
||||||
if (supportsDataflash) {
|
$(".tab-dataflash").toggleClass("supported", supportsDataflash);
|
||||||
// UI hooks
|
|
||||||
$('.tab-dataflash a.erase-flash').click(ask_to_erase_flash);
|
|
||||||
|
|
||||||
$('.tab-dataflash a.erase-flash-confirm').click(flash_erase);
|
if (supportsDataflash) {
|
||||||
$('.tab-dataflash a.erase-flash-cancel').click(flash_erase_cancel);
|
// UI hooks
|
||||||
|
$('.tab-dataflash a.erase-flash').click(ask_to_erase_flash);
|
||||||
|
|
||||||
$('.tab-dataflash a.save-flash').click(flash_save_begin);
|
$('.tab-dataflash a.erase-flash-confirm').click(flash_erase);
|
||||||
$('.tab-dataflash a.save-flash-cancel').click(flash_save_cancel);
|
$('.tab-dataflash a.erase-flash-cancel').click(flash_erase_cancel);
|
||||||
$('.tab-dataflash a.save-flash-dismiss').click(dismiss_saving_dialog);
|
|
||||||
|
|
||||||
update_html();
|
$('.tab-dataflash a.save-flash').click(flash_save_begin);
|
||||||
|
$('.tab-dataflash a.save-flash-cancel').click(flash_save_cancel);
|
||||||
|
$('.tab-dataflash a.save-flash-dismiss').click(dismiss_saving_dialog);
|
||||||
|
|
||||||
|
update_html();
|
||||||
|
} else {
|
||||||
|
$(".tab-dataflash .note").html(chrome.i18n.getMessage('dataflashNotSupportedNote'));
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
$(".tab-dataflash").removeClass("supported");
|
||||||
|
$(".tab-dataflash .note").html(chrome.i18n.getMessage('dataflashFirmwareUpgradeRequired'));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
if (callback) callback();
|
if (callback) callback();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -12,7 +12,6 @@
|
||||||
</select>
|
</select>
|
||||||
</div>
|
</div>
|
||||||
<div class="clear-both"></div>
|
<div class="clear-both"></div>
|
||||||
|
|
||||||
<form name="pid-tuning" id="pid-tuning">
|
<form name="pid-tuning" id="pid-tuning">
|
||||||
<table class="pid_tuning">
|
<table class="pid_tuning">
|
||||||
<tr>
|
<tr>
|
||||||
|
@ -80,21 +79,28 @@
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
<table class="rate-tpa">
|
<table class="rate-tpa">
|
||||||
<tr>
|
<thead>
|
||||||
<th i18n="pidTuningRollPitchRate"></th>
|
<tr>
|
||||||
<th i18n="pidTuningYawRate"></th>
|
<th class="roll-pitch" i18n="pidTuningRollPitchRate"></th>
|
||||||
<th i18n="pidTuningTPA"></th>
|
<th class="roll" i18n="pidTuningRollRate"></th>
|
||||||
<th i18n="pidTuningTPABreakPoint" class="tpa"></th>
|
<th class="pitch" i18n="pidTuningPitchRate"></th>
|
||||||
</tr>
|
<th i18n="pidTuningYawRate"></th>
|
||||||
<tr>
|
<th i18n="pidTuningTPA"></th>
|
||||||
<td><input type="number" name="roll-pitch" step="0.01" min="0" max="2.55"/></td>
|
<th class="tpa-breakpoint" i18n="pidTuningTPABreakPoint"></th>
|
||||||
<td><input type="number" name="yaw" step="0.01" min="0" max="2.55"/></td>
|
</tr>
|
||||||
<td><input type="number" name="tpa" step="0.01" min="0" max="2.55"/></td>
|
</thead>
|
||||||
<td><input type="number" name="tpa-breakpoint" step="10" min="1000" max="2000" /></td>
|
<tbody>
|
||||||
</tr>
|
<tr>
|
||||||
|
<td class="roll-pitch" ><input type="number" name="roll-pitch" step="0.01" min="0" max="2.55"/></td>
|
||||||
|
<td class="roll" ><input type="number" name="roll" step="0.01" min="0" max="2.55"/></td>
|
||||||
|
<td class="pitch" ><input type="number" name="pitch" step="0.01" min="0" max="2.55"/></td>
|
||||||
|
<td><input type="number" name="yaw" step="0.01" min="0" max="2.55"/></td>
|
||||||
|
<td><input type="number" name="tpa" step="0.01" min="0" max="2.55"/></td>
|
||||||
|
<td class="tpa-breakpoint"><input type="number" name="tpa-breakpoint" step="10" min="1000" max="2000" /></td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
</form>
|
</form>
|
||||||
|
|
||||||
<div class="clear-both"></div>
|
<div class="clear-both"></div>
|
||||||
<div class="profile">
|
<div class="profile">
|
||||||
<span class="head" i18n="pidTuningProfileHead"></span>
|
<span class="head" i18n="pidTuningProfileHead"></span>
|
||||||
|
|
|
@ -39,8 +39,8 @@ TABS.pid_tuning.initialize = function (callback) {
|
||||||
// requesting MSP_STATUS manually because it contains CONFIG.profile
|
// requesting MSP_STATUS manually because it contains CONFIG.profile
|
||||||
MSP.send_message(MSP_codes.MSP_STATUS, false, false, get_pid_controller);
|
MSP.send_message(MSP_codes.MSP_STATUS, false, false, get_pid_controller);
|
||||||
|
|
||||||
function data_stoarage_to_form() {
|
function pid_and_rc_to_form() {
|
||||||
// Fill in the data from PIDs array
|
// Fill in the data from PIDs array
|
||||||
var i = 0;
|
var i = 0;
|
||||||
$('.pid_tuning .ROLL input').each(function () {
|
$('.pid_tuning .ROLL input').each(function () {
|
||||||
switch (i) {
|
switch (i) {
|
||||||
|
@ -173,13 +173,15 @@ TABS.pid_tuning.initialize = function (callback) {
|
||||||
|
|
||||||
// Fill in data from RC_tuning object
|
// Fill in data from RC_tuning object
|
||||||
$('.rate-tpa input[name="roll-pitch"]').val(RC_tuning.roll_pitch_rate.toFixed(2));
|
$('.rate-tpa input[name="roll-pitch"]').val(RC_tuning.roll_pitch_rate.toFixed(2));
|
||||||
|
$('.rate-tpa input[name="roll"]').val(RC_tuning.roll_rate.toFixed(2));
|
||||||
|
$('.rate-tpa input[name="pitch"]').val(RC_tuning.pitch_rate.toFixed(2));
|
||||||
$('.rate-tpa input[name="yaw"]').val(RC_tuning.yaw_rate.toFixed(2));
|
$('.rate-tpa input[name="yaw"]').val(RC_tuning.yaw_rate.toFixed(2));
|
||||||
$('.rate-tpa input[name="tpa"]').val(RC_tuning.dynamic_THR_PID.toFixed(2));
|
$('.rate-tpa input[name="tpa"]').val(RC_tuning.dynamic_THR_PID.toFixed(2));
|
||||||
$('.rate-tpa input[name="tpa-breakpoint"]').val(RC_tuning.dynamic_THR_breakpoint);
|
$('.rate-tpa input[name="tpa-breakpoint"]').val(RC_tuning.dynamic_THR_breakpoint);
|
||||||
}
|
}
|
||||||
|
|
||||||
function form_to_pid_and_rc() {
|
function form_to_pid_and_rc() {
|
||||||
// Catch all the changes and stuff the inside PIDs array
|
// Catch all the changes and stuff the inside PIDs array
|
||||||
var i = 0;
|
var i = 0;
|
||||||
$('table.pid_tuning tr.ROLL input').each(function () {
|
$('table.pid_tuning tr.ROLL input').each(function () {
|
||||||
PIDs[0][i++] = parseFloat($(this).val());
|
PIDs[0][i++] = parseFloat($(this).val());
|
||||||
|
@ -232,6 +234,8 @@ TABS.pid_tuning.initialize = function (callback) {
|
||||||
|
|
||||||
// catch RC_tuning changes
|
// catch RC_tuning changes
|
||||||
RC_tuning.roll_pitch_rate = parseFloat($('.rate-tpa input[name="roll-pitch"]').val());
|
RC_tuning.roll_pitch_rate = parseFloat($('.rate-tpa input[name="roll-pitch"]').val());
|
||||||
|
RC_tuning.roll_rate = parseFloat($('.rate-tpa input[name="roll"]').val());
|
||||||
|
RC_tuning.pitch_rate = parseFloat($('.rate-tpa input[name="pitch"]').val());
|
||||||
RC_tuning.yaw_rate = parseFloat($('.rate-tpa input[name="yaw"]').val());
|
RC_tuning.yaw_rate = parseFloat($('.rate-tpa input[name="yaw"]').val());
|
||||||
RC_tuning.dynamic_THR_PID = parseFloat($('.rate-tpa input[name="tpa"]').val());
|
RC_tuning.dynamic_THR_PID = parseFloat($('.rate-tpa input[name="tpa"]').val());
|
||||||
RC_tuning.dynamic_THR_breakpoint = parseInt($('.rate-tpa input[name="tpa-breakpoint"]').val());
|
RC_tuning.dynamic_THR_breakpoint = parseInt($('.rate-tpa input[name="tpa-breakpoint"]').val());
|
||||||
|
@ -254,7 +258,7 @@ TABS.pid_tuning.initialize = function (callback) {
|
||||||
$('.pid_tuning tr:eq(9) td:first').text(PID_names[7]);
|
$('.pid_tuning tr:eq(9) td:first').text(PID_names[7]);
|
||||||
$('.pid_tuning tr:eq(10) td:first').text(PID_names[8]);
|
$('.pid_tuning tr:eq(10) td:first').text(PID_names[8]);
|
||||||
|
|
||||||
data_stoarage_to_form();
|
pid_and_rc_to_form();
|
||||||
|
|
||||||
var pidController_e = $('select[name="controller"]');
|
var pidController_e = $('select[name="controller"]');
|
||||||
var profile_e = $('select[name="profile"]');
|
var profile_e = $('select[name="profile"]');
|
||||||
|
@ -271,6 +275,14 @@ TABS.pid_tuning.initialize = function (callback) {
|
||||||
pidController_e.prop('disabled', true);
|
pidController_e.prop('disabled', true);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (CONFIG.apiVersion < 1.7) {
|
||||||
|
$('.rate-tpa .tpa-breakpoint').hide();
|
||||||
|
$('.rate-tpa .roll').hide();
|
||||||
|
$('.rate-tpa .pitch').hide();
|
||||||
|
} else {
|
||||||
|
$('.rate-tpa .roll-pitch').hide();
|
||||||
|
}
|
||||||
|
|
||||||
// Fill in currently selected profile
|
// Fill in currently selected profile
|
||||||
|
|
||||||
profile_e.val(CONFIG.profile);
|
profile_e.val(CONFIG.profile);
|
||||||
|
@ -313,11 +325,12 @@ TABS.pid_tuning.initialize = function (callback) {
|
||||||
|
|
||||||
// update == save.
|
// update == save.
|
||||||
$('a.update').click(function () {
|
$('a.update').click(function () {
|
||||||
|
|
||||||
form_to_pid_and_rc();
|
form_to_pid_and_rc();
|
||||||
|
|
||||||
function send_pids() {
|
function send_pids() {
|
||||||
if (!TABS.pid_tuning.controllerChanged) MSP.send_message(MSP_codes.MSP_SET_PID, MSP.crunch(MSP_codes.MSP_SET_PID), false, send_rc_tuning_changes);
|
if (!TABS.pid_tuning.controllerChanged) {
|
||||||
|
MSP.send_message(MSP_codes.MSP_SET_PID, MSP.crunch(MSP_codes.MSP_SET_PID), false, send_rc_tuning_changes);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
function send_rc_tuning_changes() {
|
function send_rc_tuning_changes() {
|
||||||
|
@ -348,10 +361,14 @@ TABS.pid_tuning.initialize = function (callback) {
|
||||||
MSP.send_message(MSP_codes.MSP_STATUS);
|
MSP.send_message(MSP_codes.MSP_STATUS);
|
||||||
}, 250, true);
|
}, 250, true);
|
||||||
|
|
||||||
if (callback) callback();
|
if (callback) {
|
||||||
|
callback();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
TABS.pid_tuning.cleanup = function (callback) {
|
TABS.pid_tuning.cleanup = function (callback) {
|
||||||
if (callback) callback();
|
if (callback) {
|
||||||
|
callback();
|
||||||
|
}
|
||||||
};
|
};
|
||||||
|
|
|
@ -65,3 +65,21 @@
|
||||||
.tab-ports .save:hover {
|
.tab-ports .save:hover {
|
||||||
background-color: #dedcdc;
|
background-color: #dedcdc;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.tab-ports .note {
|
||||||
|
padding: 5px;
|
||||||
|
border: 1px dashed silver;
|
||||||
|
margin-bottom: 8px;
|
||||||
|
}
|
||||||
|
.require-support {
|
||||||
|
display:none;
|
||||||
|
}
|
||||||
|
.tab-ports.supported .require-support {
|
||||||
|
display:block;
|
||||||
|
}
|
||||||
|
.require-upgrade {
|
||||||
|
display:block;
|
||||||
|
}
|
||||||
|
.tab-ports.supported .require-upgrade {
|
||||||
|
display:none;
|
||||||
|
}
|
||||||
|
|
|
@ -1,25 +1,29 @@
|
||||||
<div id="content-watermark"></div>
|
<div id="content-watermark"></div>
|
||||||
<div class="tab-ports">
|
<div class="tab-ports">
|
||||||
<div class="help">
|
<div class="require-support">
|
||||||
<p i18n="portsHelp"></p>
|
<div class="help">
|
||||||
|
<p i18n="portsHelp"></p>
|
||||||
|
</div>
|
||||||
|
<table class="ports">
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<td>Identifier</td>
|
||||||
|
<td>Data</td>
|
||||||
|
<td>Logging</td>
|
||||||
|
<td>Telemetry</td>
|
||||||
|
<td>RX</td>
|
||||||
|
<td>GPS</td>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
<div class="clear-both"></div>
|
||||||
|
<div class="buttons">
|
||||||
|
<a class="save" href="#" i18n="portsButtonSave"></a>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<table class="ports">
|
<div class="note require-upgrade" i18n="portsFirmwareUpgradeRequired">
|
||||||
<thead>
|
|
||||||
<tr>
|
|
||||||
<td>Identifier</td>
|
|
||||||
<td>Data</td>
|
|
||||||
<td>Logging</td>
|
|
||||||
<td>Telemetry</td>
|
|
||||||
<td>RX</td>
|
|
||||||
<td>GPS</td>
|
|
||||||
</tr>
|
|
||||||
</thead>
|
|
||||||
<tbody>
|
|
||||||
</tbody>
|
|
||||||
</table>
|
|
||||||
<div class="clear-both"></div>
|
|
||||||
<div class="buttons">
|
|
||||||
<a class="save" href="#" i18n="portsButtonSave"></a>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
|
@ -48,7 +48,12 @@ TABS.ports.initialize = function (callback, scrollPosition) {
|
||||||
];
|
];
|
||||||
|
|
||||||
var blackboxBaudRates = [
|
var blackboxBaudRates = [
|
||||||
'115200'
|
'19200',
|
||||||
|
'38400',
|
||||||
|
'57600',
|
||||||
|
'115200',
|
||||||
|
'230400',
|
||||||
|
'250000',
|
||||||
];
|
];
|
||||||
|
|
||||||
var columns = ['data', 'logging', 'gps', 'telemetry', 'rx'];
|
var columns = ['data', 'logging', 'gps', 'telemetry', 'rx'];
|
||||||
|
@ -75,6 +80,13 @@ TABS.ports.initialize = function (callback, scrollPosition) {
|
||||||
|
|
||||||
function update_ui() {
|
function update_ui() {
|
||||||
|
|
||||||
|
if (CONFIG.apiVersion < 1.6) {
|
||||||
|
|
||||||
|
$(".tab-ports").removeClass("supported");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
$(".tab-ports").addClass("supported");
|
||||||
|
|
||||||
var portIdentifierToNameMapping = {
|
var portIdentifierToNameMapping = {
|
||||||
0: 'UART1',
|
0: 'UART1',
|
||||||
|
|
Loading…
Reference in New Issue