Removed the unnecessary throwing of an exception on debugWire activation/updating DWEN fuse bit failure.

This commit is contained in:
Nav
2022-03-13 20:46:38 +00:00
parent 77a52bab96
commit 37a5665874

View File

@@ -154,11 +154,9 @@ namespace Bloom::Targets::Microchip::Avr::Avr8Bit
this->updateDwenFuseBit(true);
} catch (const Exception& exception) {
Logger::error(
throw Exception(
"Failed to access/update DWEN fuse bit via ISP interface - " + exception.getMessage()
);
throw debugWireException;
}
Logger::info("Retrying debugWire physical interface activation");