Moved reserveSteppingBreakpoint AVR8 config param to more generic TargetConfig struct

This commit is contained in:
Nav
2024-10-06 17:09:06 +01:00
parent d21afc47f4
commit 7fc1145d4b
4 changed files with 11 additions and 11 deletions

View File

@@ -69,6 +69,11 @@ struct TargetConfig
*/
bool programMemoryCache = true;
/**
* Determines if Bloom will reserve a single hardware breakpoint for stepping operations.
*/
bool reserveSteppingBreakpoint = true;
/**
* For extracting any target specific configuration. See Avr8TargetConfig::Avr8TargetConfig() and
* Avr8::preActivationConfigure() for an example of this.