'use strict'; TABS.pid_tuning = { }; TABS.pid_tuning.initialize = function (callback) { var self = this; if (GUI.active_tab != 'pid_tuning') { GUI.active_tab = 'pid_tuning'; googleAnalytics.sendAppView('PID Tuning'); } function get_pid_names() { MSP.send_message(MSP_codes.MSP_PIDNAMES, false, false, get_pid_data); } function get_pid_data() { MSP.send_message(MSP_codes.MSP_PID, false, false, get_rc_tuning_data); } function get_rc_tuning_data() { MSP.send_message(MSP_codes.MSP_RC_TUNING, false, false, load_html); } function load_html() { $('#content').load("./tabs/pid_tuning.html", process_html); } // requesting MSP_STATUS manually because it contains CONFIG.profile MSP.send_message(MSP_codes.MSP_STATUS, false, false, get_pid_names); function pid_and_rc_to_form() { // Fill in the data from PIDs array var i = 0; $('.pid_tuning .ROLL input').each(function () { switch (i) { case 0: $(this).val(PIDs[0][i++].toFixed(1)); break; case 1: $(this).val(PIDs[0][i++].toFixed(3)); break; case 2: $(this).val(PIDs[0][i++].toFixed(0)); break; } }); i = 0; $('.pid_tuning .PITCH input').each(function () { switch (i) { case 0: $(this).val(PIDs[1][i++].toFixed(1)); break; case 1: $(this).val(PIDs[1][i++].toFixed(3)); break; case 2: $(this).val(PIDs[1][i++].toFixed(0)); break; } }); i = 0; $('.pid_tuning .YAW input').each(function () { switch (i) { case 0: $(this).val(PIDs[2][i++].toFixed(1)); break; case 1: $(this).val(PIDs[2][i++].toFixed(3)); break; case 2: $(this).val(PIDs[2][i++].toFixed(0)); break; } }); i = 0; $('.pid_tuning .ALT input').each(function () { switch (i) { case 0: $(this).val(PIDs[3][i++].toFixed(1)); break; case 1: $(this).val(PIDs[3][i++].toFixed(3)); break; case 2: $(this).val(PIDs[3][i++].toFixed(0)); break; } }); i = 0; $('.pid_tuning .Pos input').each(function () { $(this).val(PIDs[4][i++].toFixed(2)); }); i = 0; $('.pid_tuning .PosR input').each(function () { switch (i) { case 0: $(this).val(PIDs[5][i++].toFixed(1)); break; case 1: $(this).val(PIDs[5][i++].toFixed(2)); break; case 2: $(this).val(PIDs[5][i++].toFixed(3)); break; } }); i = 0; $('.pid_tuning .NavR input').each(function () { switch (i) { case 0: $(this).val(PIDs[6][i++].toFixed(1)); break; case 1: $(this).val(PIDs[6][i++].toFixed(2)); break; case 2: $(this).val(PIDs[6][i++].toFixed(3)); break; } }); i = 0; $('.pid_tuning .LEVEL input').each(function () { switch (i) { case 0: $(this).val(PIDs[7][i++].toFixed(1)); break; case 1: $(this).val(PIDs[7][i++].toFixed(3)); break; case 2: $(this).val(PIDs[7][i++].toFixed(0)); break; } }); i = 0; $('.pid_tuning .MAG input').each(function () { $(this).val(PIDs[8][i++].toFixed(1)); }); i = 0; $('.pid_tuning .Vario input').each(function () { switch (i) { case 0: $(this).val(PIDs[9][i++].toFixed(1)); break; case 1: $(this).val(PIDs[9][i++].toFixed(3)); break; case 2: $(this).val(PIDs[9][i++].toFixed(0)); break; } }); // Fill in data from RC_tuning object $('.rate-tpa input[name="roll-pitch"]').val(RC_tuning.roll_pitch_rate.toFixed(2)); if (FC.isRatesInDps()) { $('.rate-tpa input[name="roll"]').val(RC_tuning.roll_rate); $('.rate-tpa input[name="pitch"]').val(RC_tuning.pitch_rate); $('.rate-tpa input[name="yaw"]').val(RC_tuning.yaw_rate); } else { $('.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="tpa"]').val(RC_tuning.dynamic_THR_PID.toFixed(2)); $('.rate-tpa input[name="tpa-breakpoint"]').val(RC_tuning.dynamic_THR_breakpoint); } function form_to_pid_and_rc() { // Catch all the changes and stuff the inside PIDs array var i = 0; $('table.pid_tuning tr.ROLL input').each(function () { PIDs[0][i++] = parseFloat($(this).val()); }); i = 0; $('table.pid_tuning tr.PITCH input').each(function () { PIDs[1][i++] = parseFloat($(this).val()); }); i = 0; $('table.pid_tuning tr.YAW input').each(function () { PIDs[2][i++] = parseFloat($(this).val()); }); i = 0; $('table.pid_tuning tr.ALT input').each(function () { PIDs[3][i++] = parseFloat($(this).val()); }); i = 0; $('table.pid_tuning tr.Vario input').each(function () { PIDs[9][i++] = parseFloat($(this).val()); }); i = 0; $('table.pid_tuning tr.Pos input').each(function () { PIDs[4][i++] = parseFloat($(this).val()); }); i = 0; $('table.pid_tuning tr.PosR input').each(function () { PIDs[5][i++] = parseFloat($(this).val()); }); i = 0; $('table.pid_tuning tr.NavR input').each(function () { PIDs[6][i++] = parseFloat($(this).val()); }); i = 0; $('table.pid_tuning tr.LEVEL input').each(function () { PIDs[7][i++] = parseFloat($(this).val()); }); i = 0; $('table.pid_tuning tr.MAG input').each(function () { PIDs[8][i++] = parseFloat($(this).val()); }); // catch RC_tuning changes RC_tuning.roll_pitch_rate = parseFloat($('.rate-tpa input[name="roll-pitch"]').val()); RC_tuning.roll_rate = parseFloat($('.rate-tpa input[name="roll"]:visible').val()); RC_tuning.pitch_rate = parseFloat($('.rate-tpa input[name="pitch"]:visible').val()); RC_tuning.yaw_rate = parseFloat($('.rate-tpa input[name="yaw"]:visible').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()); } function hideUnusedPids(sensors_detected) { $('.tab-pid_tuning table.pid_tuning').hide(); $('#pid_main').show(); if (have_sensor(sensors_detected, 'acc')) { $('#pid_accel').show(); } if (have_sensor(sensors_detected, 'baro')) { $('#pid_baro').show(); } if (have_sensor(sensors_detected, 'mag')) { $('#pid_mag').show(); } if (bit_check(BF_CONFIG.features, 7)) { //This will need to be reworked to remove BF_CONFIG reference eventually $('#pid_gps').show(); } if (have_sensor(sensors_detected, 'sonar')) { $('#pid_baro').show(); } } function process_html() { // translate to user-selected language localize(); hideUnusedPids(CONFIG.activeSensors); $('#showAllPids').on('click', function(){ if($(this).text() == "Show all PIDs") { $('.tab-pid_tuning table.pid_tuning').show(); $(this).text('Hide unused PIDs'); } else { hideUnusedPids(CONFIG.activeSensors); $(this).text('Show all PIDs'); } }); $('#resetPIDs').on('click', function(){ MSP.send_message(MSP_codes.MSP_SET_RESET_CURR_PID, false, false, false); updateActivatedTab(); }); var i; $('.pid_tuning tr').each(function(){ for(i = 0; i < PID_names.length; i++) { if($(this).hasClass(PID_names[i])) { $(this).find('td:first').text(PID_names[i]); } } }); pid_and_rc_to_form(); var form_e = $('#pid-tuning'); if (semver.lt(CONFIG.apiVersion, "1.7.0")) { $('.rate-tpa .tpa-breakpoint').hide(); $('.rate-tpa .roll').hide(); $('.rate-tpa .pitch').hide(); $('.rate-tpa--inav').hide(); } else if (FC.isRatesInDps()) { $('.rate-tpa--no-dps').hide(); } else { $('.rate-tpa .roll-pitch').hide(); $('.rate-tpa--inav').hide(); } // UI Hooks $('a.refresh').click(function () { GUI.tab_switch_cleanup(function () { GUI.log(chrome.i18n.getMessage('pidTuningDataRefreshed')); TABS.pid_tuning.initialize(); }); }); // update == save. $('a.update').click(function () { form_to_pid_and_rc(); function send_pids() { 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() { MSP.send_message(MSP_codes.MSP_SET_RC_TUNING, MSP.crunch(MSP_codes.MSP_SET_RC_TUNING), false, save_to_eeprom); } function save_to_eeprom() { MSP.send_message(MSP_codes.MSP_EEPROM_WRITE, false, false, function () { GUI.log(chrome.i18n.getMessage('pidTuningEepromSaved')); }); } send_pids(); }); // status data pulled via separate timer with static speed GUI.interval_add('status_pull', function status_pull() { MSP.send_message(MSP_codes.MSP_STATUS); }, 250, true); GUI.content_ready(callback); } }; TABS.pid_tuning.cleanup = function (callback) { if (callback) { callback(); } };