Added support for GDB's 'qXfer:memory-map:read::...' command packet.

This commit is contained in:
Nav
2022-05-14 22:43:08 +01:00
parent 159c77a5f1
commit f1e20c81a2
5 changed files with 148 additions and 0 deletions

View File

@@ -47,6 +47,8 @@ namespace Bloom::DebugServer::Gdb::AvrGdb
const RawPacketType& rawPacket
) override;
std::set<std::pair<Feature, std::optional<std::string>>> getSupportedFeatures() override ;
private:
std::optional<TargetDescriptor> gdbTargetDescriptor;
};