Help text for target driver passthrough commands

This commit is contained in:
Nav
2024-12-16 21:36:47 +00:00
parent 6873b2f53a
commit 9486cc0163
14 changed files with 119 additions and 2 deletions

View File

@@ -691,6 +691,10 @@ namespace Targets::Microchip::Avr8
return this->activeProgrammingSession.has_value();
}
std::string Avr8::passthroughCommandHelpText() {
return {};
}
std::optional<PassthroughResponse> Avr8::invokePassthroughCommand(const PassthroughCommand& command) {
// AVR targets do not currently support any passthrough commands
return std::nullopt;

View File

@@ -108,6 +108,7 @@ namespace Targets::Microchip::Avr8
void disableProgrammingMode() override;
bool programmingModeEnabled() override;
std::string passthroughCommandHelpText() override;
std::optional<PassthroughResponse> invokePassthroughCommand(const PassthroughCommand& command) override;
protected: