Support for vFlashDone GDB command packet

This commit is contained in:
Nav
2022-05-29 17:18:56 +01:00
parent 1a541dcd17
commit b5b0969c37

View File

@@ -56,6 +56,12 @@ namespace Bloom::DebugServer::Gdb::CommandPackets
return;
}
if (packetString.find("vFlashDone") == 0) {
Logger::debug("Handling vFlashDone");
debugSession.connection.writePacket(OkResponsePacket());
return;
}
Logger::debug("Unknown GDB RSP packet: " + packetString + " - returning empty response");
// Respond with an empty packet