Introduced concept of programming mode

This commit is contained in:
Nav
2022-06-05 16:13:43 +01:00
parent accea6a08c
commit cfe533e5db
11 changed files with 172 additions and 0 deletions

View File

@@ -42,5 +42,9 @@ namespace Bloom::TargetController::Commands
[[nodiscard]] bool requiresStoppedTargetState() const override {
return true;
}
[[nodiscard]] bool requiresDebugMode() const override {
return this->memoryType == Targets::TargetMemoryType::RAM;
}
};
}