fix: set radio using , separator

Этот коммит содержится в:
Jared Dohrman
2026-04-21 14:13:57 +10:00
родитель 4ae00fcf46
Коммит eb1a934849
+1 -1
Просмотреть файл
@@ -2394,7 +2394,7 @@ const char kWebPanelAppHtml[] PROGMEM = R"HTML(
setRadioPresetStatus("Select a community preset first.", true);
return;
}
const command = `set radio ${preset.frequency} ${preset.bandwidth} ${preset.spreadingFactor} ${preset.codingRate}`;
const command = `set radio ${preset.frequency},${preset.bandwidth},${preset.spreadingFactor},${preset.codingRate}`;
const result = await runCommand(command);
if (!result.ok) {
setRadioPresetStatus(parseReplyValue(result.text) || "Unable to apply radio preset.", true);