Removed monitor target-info machine command

This commit is contained in:
Nav
2022-08-30 02:56:33 +01:00
parent cfb0ee6eee
commit 7a39327c95
5 changed files with 0 additions and 132 deletions

View File

@@ -30,7 +30,6 @@
#include "CommandPackets/HelpMonitorInfo.hpp"
#include "CommandPackets/BloomVersion.hpp"
#include "CommandPackets/BloomVersionMachine.hpp"
#include "CommandPackets/TargetInfoMachine.hpp"
#include "CommandPackets/GenerateSvd.hpp"
// Response packets
@@ -316,10 +315,6 @@ namespace Bloom::DebugServer::Gdb
return std::make_unique<CommandPackets::ResetTarget>(std::move(*(monitorCommand.release())));
}
if (monitorCommand->command == "target-info machine") {
return std::make_unique<CommandPackets::TargetInfoMachine>(std::move(*(monitorCommand.release())));
}
if (monitorCommand->command.find("svd") == 0) {
return std::make_unique<CommandPackets::GenerateSvd>(std::move(*(monitorCommand.release())));
}