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, };