diff --git a/src/TargetController/Commands/CommandTypes.hpp b/src/TargetController/Commands/CommandTypes.hpp index 1b5dcfa1..bcd0a9b6 100644 --- a/src/TargetController/Commands/CommandTypes.hpp +++ b/src/TargetController/Commands/CommandTypes.hpp @@ -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, diff --git a/src/TargetController/Commands/Resume.hpp b/src/TargetController/Commands/Resume.hpp deleted file mode 100644 index 1c66ad79..00000000 --- a/src/TargetController/Commands/Resume.hpp +++ /dev/null @@ -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; - } - }; -} diff --git a/src/TargetController/Commands/Suspend.hpp b/src/TargetController/Commands/Suspend.hpp deleted file mode 100644 index bf329c63..00000000 --- a/src/TargetController/Commands/Suspend.hpp +++ /dev/null @@ -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; - } - }; -}