From 184b94c5fc34e21b30f0d56c9ba730416bdcb18b Mon Sep 17 00:00:00 2001 From: yyc12345 Date: Fri, 9 Jan 2026 19:34:37 +0800 Subject: [PATCH] fix protocol bug --- BasaltPresenter/Presenter/cmd_client.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BasaltPresenter/Presenter/cmd_client.cpp b/BasaltPresenter/Presenter/cmd_client.cpp index 4972152..88623d8 100644 --- a/BasaltPresenter/Presenter/cmd_client.cpp +++ b/BasaltPresenter/Presenter/cmd_client.cpp @@ -39,7 +39,7 @@ namespace basalt::presenter::cmd_client { // If actively stop, send actively stop code to Trainer first if (actively_stop) { - ProtocolCode actively_stop_code = ProtocolCode::STOP_REQUEST; + ProtocolCode actively_stop_code = ProtocolCode::ACTIVELY_STOP; m_PipeOperator.write_pod(actively_stop_code); }