From 42e273040816c014e3798721aa54b4af3c6d3876 Mon Sep 17 00:00:00 2001 From: Nav Date: Tue, 3 May 2022 19:58:44 +0100 Subject: [PATCH] Fixed AVR8 activation bug, where a hardcoded break statement was causing issues with reading data from the target, post activation --- src/Targets/Microchip/AVR/AVR8/Avr8.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Targets/Microchip/AVR/AVR8/Avr8.cpp b/src/Targets/Microchip/AVR/AVR8/Avr8.cpp index f62174f6..ea0fcdad 100644 --- a/src/Targets/Microchip/AVR/AVR8/Avr8.cpp +++ b/src/Targets/Microchip/AVR/AVR8/Avr8.cpp @@ -171,6 +171,7 @@ namespace Bloom::Targets::Microchip::Avr::Avr8Bit } this->activated = true; + this->avr8DebugInterface->reset(); } void Avr8::deactivate() {