Renamed Packet::dataToHex() member function

This commit is contained in:
Nav
2022-04-06 16:45:57 +01:00
parent bd73051003
commit 203b6ff86f
4 changed files with 4 additions and 4 deletions

View File

@@ -64,7 +64,7 @@ namespace Bloom::DebugServer::Gdb::AvrGdb::CommandPackets
this->bytes
);
auto hexMemoryBuffer = Packet::dataToHex(memoryBuffer);
auto hexMemoryBuffer = Packet::toHex(memoryBuffer);
debugSession.connection.writePacket(
ResponsePacket(std::vector<unsigned char>(hexMemoryBuffer.begin(), hexMemoryBuffer.end()))
);