Added programming mode functions in Avr8DebugInterface

This commit is contained in:
Nav
2022-05-15 17:40:15 +01:00
parent ead657b4af
commit a582a963a8

View File

@@ -200,5 +200,15 @@ namespace Bloom::DebugToolDrivers::TargetInterfaces::Microchip::Avr::Avr8
* @return
*/
virtual Targets::TargetState getTargetState() = 0;
/**
* Should prepare the debug interface for programming the target.
*/
virtual void enableProgrammingMode() = 0;
/**
* Should prepare the debug interface for resuming debugging operations after a programming session.
*/
virtual void disableProgrammingMode() = 0;
};
}