Removed debugging code. Other small bits of tidying

This commit is contained in:
Nav
2021-04-12 19:43:42 +01:00
parent 7e6bb420c3
commit 8da2aa3a8d
4 changed files with 12 additions and 8 deletions

View File

@@ -29,8 +29,14 @@ namespace Bloom
return this->initialised;
}
/**
* Should establish a connection to the device and prepare it for a debug session.
*/
virtual void init() = 0;
/**
* Should disconnect from the device after performing any tasks required to formally end the debug session.
*/
virtual void close() = 0;
virtual std::string getName() = 0;
@@ -43,6 +49,8 @@ namespace Bloom
*
* For debug tools that do not support AVR8 targets, this method should return a nullptr.
*
* Note: the caller of this method will not manage the lifetime of the returned Avr8Interface instance.
*
* @return
*/
virtual Avr8Interface* getAvr8Interface() {