1
0
Fork 0
mirror of https://github.com/betaflight/betaflight.git synced 2025-07-19 06:15:16 +03:00
This commit is contained in:
cTn 2014-04-13 22:43:24 +02:00
parent a0cf5463bc
commit c85f5af9cb

View file

@ -179,10 +179,10 @@ function tab_initialize_sensors() {
$('.tab-sensors select[name="debug_refresh_rate"]').val(result.sensor_settings.rates.debug); $('.tab-sensors select[name="debug_refresh_rate"]').val(result.sensor_settings.rates.debug);
// start polling data by triggering refresh rate change event // start polling data by triggering refresh rate change event
$('.tab-sensors .scale select').change(); // currently fires 3 times, needs to be optimized $('.tab-sensors .scale select:first').change();
} else { } else {
// start polling immediatly (as there is no configuration saved in the storage) // start polling immediatly (as there is no configuration saved in the storage)
$('.tab-sensors .scale select').change(); // currently fires 3 times, needs to be optimized $('.tab-sensors .scale select:first').change();
} }
}); });
@ -272,17 +272,13 @@ function tab_initialize_sensors() {
}); });
$('.tab-sensors .scale select').change(function() { $('.tab-sensors .scale select').change(function() {
var el = $(this); var gyro_s = parseFloat($('select[name="gyro_scale"]').val());
var name = el.attr('name'); var acc_s = parseFloat($('select[name="accel_scale"]').val());
var val = parseFloat(el.val()); var mag_s = parseFloat($('select[name="mag_scale"]').val());
if (name == 'gyro_scale') { gyroHelpers = initGraphHelpers('#gyro', samples_gyro_i, [-gyro_s, gyro_s]);
gyroHelpers = initGraphHelpers('#gyro', samples_gyro_i, [-val, val]); accelHelpers = initGraphHelpers('#accel', samples_accel_i, [-acc_s, acc_s]);
} else if (name == 'accel_scale') { magHelpers = initGraphHelpers('#mag', samples_mag_i, [-mag_s, mag_s]);
accelHelpers = initGraphHelpers('#accel', samples_accel_i, [-val, val]);
} else if (name == 'mag_scale') {
magHelpers = initGraphHelpers('#mag', samples_mag_i, [-val, val]);
}
$('.tab-sensors .rate select:first').change(); $('.tab-sensors .rate select:first').change();
}); });