Included AVR GDB specific implementations of the read and write memory GDB command packets.

This commit is contained in:
Nav
2022-03-27 19:44:02 +01:00
parent 7a655f1223
commit 3bd09bdc84
2 changed files with 27 additions and 0 deletions

View File

@@ -42,6 +42,10 @@ namespace Bloom::DebugServers::Gdb::AvrGdb
return this->gdbTargetDescriptor.value();
}
std::unique_ptr<Gdb::CommandPackets::CommandPacket> resolveCommandPacket(
const RawPacketType& rawPacket
) override;
private:
std::optional<TargetDescriptor> gdbTargetDescriptor;
};