Removed obsolete TC commands

This commit is contained in:
Nav
2023-05-26 00:38:54 +01:00
parent 89d923bc09
commit 039df146a7
3 changed files with 0 additions and 45 deletions

View File

@@ -7,9 +7,6 @@ namespace Bloom::TargetController::Commands
enum class CommandType: std::uint8_t
{
GENERIC,
GET_STATE,
RESUME,
SUSPEND,
GET_TARGET_DESCRIPTOR,
STOP_TARGET_EXECUTION,
RESUME_TARGET_EXECUTION,

View File

@@ -1,21 +0,0 @@
#pragma once
#include "Command.hpp"
namespace Bloom::TargetController::Commands
{
class Resume: public Command
{
public:
static constexpr CommandType type = CommandType::RESUME;
static const inline std::string name = "Resume";
[[nodiscard]] CommandType getType() const override {
return Resume::type;
}
[[nodiscard]] bool requiresDebugMode() const override {
return false;
}
};
}

View File

@@ -1,21 +0,0 @@
#pragma once
#include "Command.hpp"
namespace Bloom::TargetController::Commands
{
class Suspend: public Command
{
public:
static constexpr CommandType type = CommandType::SUSPEND;
static const inline std::string name = "Suspend";
[[nodiscard]] CommandType getType() const override {
return Suspend::type;
}
[[nodiscard]] bool requiresDebugMode() const override {
return false;
}
};
}