Removed intercepting breakpoint on end address of a stepping range. Replaced with runTo operation

This commit is contained in:
Nav
2023-09-23 21:51:09 +01:00
parent 9904d93314
commit ed3ddbe3fd
2 changed files with 4 additions and 14 deletions

View File

@@ -196,7 +196,10 @@ namespace DebugServer::Gdb::AvrGdb
Logger::debug("Continuing range stepping");
activeRangeSteppingSession->singleStepping = false;
this->targetControllerService.continueTargetExecution(std::nullopt, std::nullopt);
this->targetControllerService.continueTargetExecution(
std::nullopt,
activeRangeSteppingSession->range.endAddress
);
return;
}