diff --git a/src/Targets/Microchip/AVR/AVR8/Avr8.cpp b/src/Targets/Microchip/AVR/AVR8/Avr8.cpp index 10cd8f23..3a57edb7 100644 --- a/src/Targets/Microchip/AVR/AVR8/Avr8.cpp +++ b/src/Targets/Microchip/AVR/AVR8/Avr8.cpp @@ -152,6 +152,12 @@ namespace Bloom::Targets::Microchip::Avr::Avr8Bit Logger::debug("Enabling target power"); this->targetPowerManagementInterface->enableTargetPower(); + + Logger::debug( + "Waiting ~" + std::to_string(this->targetConfig->targetPowerCycleDelay.count()) + + " ms for target power-up" + ); + std::this_thread::sleep_for(this->targetConfig->targetPowerCycleDelay); } } catch (const Exception& exception) {