Added postActivate() to the target interface, for outputting any target specific info after activation.

Removed the logging of the generic target ID from the TargetController
This commit is contained in:
Nav
2024-07-23 21:35:12 +01:00
parent 6cdbfbe950
commit dd80c254a2
6 changed files with 21 additions and 1 deletions

View File

@@ -77,6 +77,10 @@ namespace Targets::RiscV
this->riscVDebugInterface->deactivate();
}
void RiscV::postActivate() {
Logger::info("WCH target ID: " + this->riscVIdInterface->getDeviceId());
}
TargetDescriptor RiscV::targetDescriptor() {
auto descriptor = TargetDescriptor{
this->targetDescriptionFile.getName(),