- Refactored AVR8 constructor, moving TDF construction to the TargetControllerComponent

- The `TargetControllerComponent` now resolves the target via the new generated mapping approach
- Added `TargetDescriptionFile` derived class
- Removed obsolete JSON map processing code
- Other bits of refactoring and tidying
This commit is contained in:
Nav
2023-12-17 18:12:53 +00:00
parent 866cdbdcc5
commit 66cbd89051
14 changed files with 161 additions and 119 deletions

View File

@@ -51,6 +51,15 @@ namespace Services
return PathService::projectDirPath() + "/.bloom";
}
/**
* Returns the path to the directory containing Bloom's target description files.
*
* @return
*/
static std::string targetDescriptionDirPath() {
return PathService::resourcesDirPath() + "/TargetDescriptionFiles";
}
/**
* Returns the path to the current project's settings file.
*