From dce6d778a8a4005bdb886555a9fdd5c951b5a830 Mon Sep 17 00:00:00 2001 From: Nav Date: Sat, 23 Sep 2023 23:06:03 +0100 Subject: [PATCH] Enable range stepping by default --- resources/bloom.template.yaml | 2 +- src/DebugServer/Gdb/GdbDebugServerConfig.hpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/resources/bloom.template.yaml b/resources/bloom.template.yaml index 7b8012cc..804b36b6 100644 --- a/resources/bloom.template.yaml +++ b/resources/bloom.template.yaml @@ -14,7 +14,7 @@ environments: name: "avr-gdb-rsp" ipAddress: "127.0.0.1" port: 1442 - rangeStepping: false + rangeStepping: true insight: activateOnStartup: false diff --git a/src/DebugServer/Gdb/GdbDebugServerConfig.hpp b/src/DebugServer/Gdb/GdbDebugServerConfig.hpp index ad6d0f87..86b34e3d 100644 --- a/src/DebugServer/Gdb/GdbDebugServerConfig.hpp +++ b/src/DebugServer/Gdb/GdbDebugServerConfig.hpp @@ -33,7 +33,7 @@ namespace DebugServer::Gdb * * This parameter is optional. If not specified, the default value set here will be used. */ - bool rangeStepping = false; + bool rangeStepping = true; explicit GdbDebugServerConfig(const DebugServerConfig& debugServerConfig); };