This commit is contained in:
Nav
2021-12-25 21:01:58 +00:00
parent 71842358ff
commit cacd81b1dc
42 changed files with 45 additions and 45 deletions

View File

@@ -1118,12 +1118,12 @@ void EdbgAvr8Interface::activatePhysical(bool applyExternalReset) {
if (response.getResponseId() == Avr8ResponseId::FAILED) {
if (!applyExternalReset) {
// Try again with external reset applied
Logger::debug("Failed to activate physical interface on AVR8 target - retrying with external reset applied.");
Logger::debug("Failed to activate physical interface on AVR8 target "
"- retrying with external reset applied.");
return this->activatePhysical(true);
} else {
throw Avr8CommandFailure("AVR8 Activate physical interface command failed", response);
}
throw Avr8CommandFailure("AVR8 Activate physical interface command failed", response);
}
this->physicalInterfaceActivated = true;