2022-03-24 19:06:09 +00:00
|
|
|
#include "AvrGdbRsp.hpp"
|
|
|
|
|
|
|
|
|
|
namespace Bloom::DebugServers::Gdb::AvrGdb
|
|
|
|
|
{
|
|
|
|
|
using namespace Bloom::Exceptions;
|
|
|
|
|
|
|
|
|
|
using Bloom::Targets::TargetRegisterDescriptor;
|
|
|
|
|
using Bloom::Targets::TargetRegisterType;
|
|
|
|
|
|
2022-03-27 18:32:13 +01:00
|
|
|
AvrGdbRsp::AvrGdbRsp(
|
|
|
|
|
const DebugServerConfig& debugServerConfig,
|
|
|
|
|
EventListener& eventListener
|
|
|
|
|
)
|
|
|
|
|
: GdbRspDebugServer(debugServerConfig, eventListener)
|
|
|
|
|
{}
|
|
|
|
|
|
2022-03-24 19:06:09 +00:00
|
|
|
void AvrGdbRsp::init() {
|
|
|
|
|
DebugServers::Gdb::GdbRspDebugServer::init();
|
|
|
|
|
|
2022-03-27 18:32:13 +01:00
|
|
|
this->gdbTargetDescriptor = TargetDescriptor(
|
|
|
|
|
this->targetControllerConsole.getTargetDescriptor()
|
|
|
|
|
);
|
2022-03-24 19:06:09 +00:00
|
|
|
}
|
|
|
|
|
}
|