From a22a648b5d30f31ad42bfcab1b08fcf8b29808c8 Mon Sep 17 00:00:00 2001 From: Stanislaw Grams Date: Mon, 9 Feb 2026 20:51:55 +0100 Subject: [PATCH] [fix](trx-frontend-http-json): map cw control commands Co-authored-by: Codex Signed-off-by: Stanislaw Grams --- .../trx-frontend/trx-frontend-http-json/src/server.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/trx-client/trx-frontend/trx-frontend-http-json/src/server.rs b/src/trx-client/trx-frontend/trx-frontend-http-json/src/server.rs index 367794f..f788734 100644 --- a/src/trx-client/trx-frontend/trx-frontend-http-json/src/server.rs +++ b/src/trx-client/trx-frontend/trx-frontend-http-json/src/server.rs @@ -142,6 +142,9 @@ async fn handle_client( ClientCommand::SetTxLimit { limit } => RigCommand::SetTxLimit(limit), ClientCommand::SetAprsDecodeEnabled { enabled } => RigCommand::SetAprsDecodeEnabled(enabled), ClientCommand::SetCwDecodeEnabled { enabled } => RigCommand::SetCwDecodeEnabled(enabled), + ClientCommand::SetCwAuto { enabled } => RigCommand::SetCwAuto(enabled), + ClientCommand::SetCwWpm { wpm } => RigCommand::SetCwWpm(wpm), + ClientCommand::SetCwToneHz { tone_hz } => RigCommand::SetCwToneHz(tone_hz), ClientCommand::ResetAprsDecoder => RigCommand::ResetAprsDecoder, ClientCommand::ResetCwDecoder => RigCommand::ResetCwDecoder, };