Tools: load FLTD from RLL_FLTD in FilterTool

This commit is contained in:
Andrew Tridgell 2022-06-26 09:41:58 +10:00
parent 864353aa4d
commit 7b8da9385d
1 changed files with 13 additions and 0 deletions

View File

@ -478,6 +478,19 @@ async function load_parameters(file) {
} }
} }
} }
if (line.startsWith("ATC_RAT_RLL_FLTD") ||
line.startsWith("Q_A_RAT_RLL_FLTD")) {
var fvar = document.getElementById("FLTD");
if (fvar) {
v = line.split(/[\s,=\t]+/);
if (v.length >= 2) {
var vname = v[0];
var value = v[1];
fvar.value = value;
console.log("set FLTD=" + value);
}
}
}
} }
fill_docs(); fill_docs();
calculate_filter(); calculate_filter();