Disable range stepping by default

This commit is contained in:
Nav
2023-09-22 16:51:24 +01:00
parent b3d03f73ac
commit 24ce9aeacb
2 changed files with 2 additions and 2 deletions

View File

@@ -14,7 +14,7 @@ environments:
name: "avr-gdb-rsp" name: "avr-gdb-rsp"
ipAddress: "127.0.0.1" ipAddress: "127.0.0.1"
port: 1442 port: 1442
rangeStepping: true rangeStepping: false
insight: insight:
activateOnStartup: false activateOnStartup: false

View File

@@ -33,7 +33,7 @@ namespace DebugServer::Gdb
* *
* This parameter is optional. If not specified, the default value set here will be used. * This parameter is optional. If not specified, the default value set here will be used.
*/ */
bool rangeStepping = true; bool rangeStepping = false;
explicit GdbDebugServerConfig(const DebugServerConfig& debugServerConfig); explicit GdbDebugServerConfig(const DebugServerConfig& debugServerConfig);
}; };