fix: 修改commandID,并修复七段数码管的配置问题

This commit is contained in:
2025-08-21 20:58:23 +08:00
parent e5b492247c
commit 78dcc5a629
9 changed files with 37 additions and 28 deletions

View File

@@ -41,7 +41,7 @@ public class DebuggerController : ControllerBase
return null;
var board = boardRet.Value.Value;
return new DebuggerClient(board.IpAddr, board.Port, 1);
return new DebuggerClient(board.IpAddr, board.Port, 7);
}
catch (Exception ex)
{

View File

@@ -41,7 +41,7 @@ public class LogicAnalyzerController : ControllerBase
return null;
var board = boardRet.Value.Value;
return new Analyzer(board.IpAddr, board.Port, 0);
return new Analyzer(board.IpAddr, board.Port, 11);
}
catch (Exception ex)
{