#pragma once #include #include "Command.hpp" #include "src/Targets/TargetMemory.hpp" namespace Bloom::TargetController::Commands { class StepTargetExecution: public Command { public: static constexpr CommandType type = CommandType::STEP_TARGET_EXECUTION; static inline const std::string name = "StepTargetExecution"; std::optional fromProgramCounter; StepTargetExecution() = default; explicit StepTargetExecution(Targets::TargetProgramCounter fromProgramCounter) : fromProgramCounter(fromProgramCounter) {}; [[nodiscard]] CommandType getType() const override { return StepTargetExecution::type; } [[nodiscard]] bool requiresStoppedTargetState() const override { return true; } }; }