diff --git a/src/DebugServer/Gdb/CommandPackets/CommandPacket.cpp b/src/DebugServer/Gdb/CommandPackets/CommandPacket.cpp index 0c1f20c1..7835e9c4 100644 --- a/src/DebugServer/Gdb/CommandPackets/CommandPacket.cpp +++ b/src/DebugServer/Gdb/CommandPackets/CommandPacket.cpp @@ -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