Compare commits

...

1 Commits

Author SHA1 Message Date
f54e4d3083 Control Panel: Move postfilter into its own group 2025-03-31 16:38:22 +08:00
2 changed files with 10 additions and 4 deletions

View File

@ -244,9 +244,9 @@ class CtrlPanel(QObject):
for postfilter_params in postfilter_data:
channel = postfilter_params["channel"]
with QSignalBlocker(self.params[channel]):
self.params[channel].child(
"Thermistor Config", "Postfilter Rate"
).setValue(postfilter_params["rate"])
self.params[channel].child("ADC Config", "Postfilter Rate").setValue(
postfilter_params["rate"]
)
def update_pid_autotune(self, ch, state):
match state:

View File

@ -181,7 +181,13 @@
"field": "b"
},
"lock": false
},
}
]
},
{
"name": "ADC Config",
"type": "group",
"children": [
{
"name": "Postfilter Rate",
"type": "list",