Added brief() to InsightWorkerTask

This commit is contained in:
Nav
2023-03-15 20:16:07 +00:00
parent e8f1329a4d
commit c8bf1c5e8a
13 changed files with 51 additions and 0 deletions

View File

@@ -25,6 +25,10 @@ namespace Bloom
, excludedAddressRanges(excludedAddressRanges)
{}
QString brief() const override {
return "Reading target " + QString(this->memoryType == Targets::TargetMemoryType::EEPROM ? "EEPROM" : "RAM");
}
TaskGroups taskGroups() const override {
return TaskGroups({
TaskGroup::USES_TARGET_CONTROLLER,