1
0
Fork 0
mirror of https://github.com/betaflight/betaflight-configurator.git synced 2025-07-23 16:25:22 +03:00

Combined gyro analytics into one event.

This commit is contained in:
mikeller 2020-05-30 01:47:00 +12:00
parent 3a5afe207c
commit 84604a6e4f

View file

@ -1231,8 +1231,7 @@ TABS.configuration.initialize = function (callback, scrollPosition) {
newDenominator = value;
newFrequency = pidSelectElement.find('option:selected').text();
}
self.analyticsChanges['PIDLoopDenominator'] = newDenominator;
self.analyticsChanges['PIDLoopFrequency'] = newFrequency;
self.analyticsChanges['PIDLoopSettings'] = `denominator: ${newDenominator} | frequency: ${newFrequency}`;
PID_ADVANCED_CONFIG.pid_process_denom = value;