Removed obsolete TC commands
This commit is contained in:
@@ -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,
|
||||
|
||||
@@ -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;
|
||||
}
|
||||
};
|
||||
}
|
||||
@@ -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;
|
||||
}
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user