Delta programming - where we only upload what's changed

This commit is contained in:
Nav
2025-02-01 23:13:45 +00:00
parent 70ec49c7ac
commit d52c46ec2a
33 changed files with 918 additions and 289 deletions

View File

@@ -213,6 +213,10 @@ TargetConfig::TargetConfig(const YAML::Node& targetNode) {
this->programMemoryCache = targetNode["program_memory_cache"].as<bool>(this->programMemoryCache);
}
if (targetNode["delta_programming"]) {
this->deltaProgramming = targetNode["delta_programming"].as<bool>(this->deltaProgramming);
}
if (targetNode["reserve_stepping_breakpoint"]) {
this->reserveSteppingBreakpoint = targetNode["reserve_stepping_breakpoint"].as<bool>(false);
}