Tidying
This commit is contained in:
@@ -21,7 +21,7 @@ namespace Bloom::TargetController::Commands
|
||||
CommandIdType id = ++(Command::lastCommandId);
|
||||
|
||||
static constexpr CommandType type = CommandType::GENERIC;
|
||||
static inline const std::string name = "GenericCommand";
|
||||
static const inline std::string name = "GenericCommand";
|
||||
|
||||
Command() = default;
|
||||
virtual ~Command() = default;
|
||||
|
||||
@@ -8,7 +8,7 @@ namespace Bloom::TargetController::Commands
|
||||
{
|
||||
public:
|
||||
static constexpr CommandType type = CommandType::DISABLE_PROGRAMMING_MODE;
|
||||
static inline const std::string name = "DisableProgrammingMode";
|
||||
static const inline std::string name = "DisableProgrammingMode";
|
||||
|
||||
DisableProgrammingMode() = default;
|
||||
|
||||
|
||||
@@ -8,7 +8,7 @@ namespace Bloom::TargetController::Commands
|
||||
{
|
||||
public:
|
||||
static constexpr CommandType type = CommandType::ENABLE_PROGRAMMING_MODE;
|
||||
static inline const std::string name = "EnableProgrammingMode";
|
||||
static const inline std::string name = "EnableProgrammingMode";
|
||||
|
||||
EnableProgrammingMode() = default;
|
||||
|
||||
|
||||
@@ -12,7 +12,7 @@ namespace Bloom::TargetController::Commands
|
||||
using SuccessResponseType = Responses::State;
|
||||
|
||||
static constexpr CommandType type = CommandType::GET_STATE;
|
||||
static inline const std::string name = "GetState";
|
||||
static const inline std::string name = "GetState";
|
||||
|
||||
[[nodiscard]] CommandType getType() const override {
|
||||
return GetState::type;
|
||||
|
||||
@@ -12,7 +12,7 @@ namespace Bloom::TargetController::Commands
|
||||
using SuccessResponseType = Responses::TargetDescriptor;
|
||||
|
||||
static constexpr CommandType type = CommandType::GET_TARGET_DESCRIPTOR;
|
||||
static inline const std::string name = "GetTargetDescriptor";
|
||||
static const inline std::string name = "GetTargetDescriptor";
|
||||
|
||||
[[nodiscard]] CommandType getType() const override {
|
||||
return GetTargetDescriptor::type;
|
||||
|
||||
@@ -12,7 +12,7 @@ namespace Bloom::TargetController::Commands
|
||||
using SuccessResponseType = Responses::TargetPinStates;
|
||||
|
||||
static constexpr CommandType type = CommandType::GET_TARGET_PIN_STATES;
|
||||
static inline const std::string name = "GetTargetPinStates";
|
||||
static const inline std::string name = "GetTargetPinStates";
|
||||
|
||||
int variantId = 0;
|
||||
|
||||
|
||||
@@ -12,7 +12,7 @@ namespace Bloom::TargetController::Commands
|
||||
using SuccessResponseType = Responses::TargetProgramCounter;
|
||||
|
||||
static constexpr CommandType type = CommandType::GET_TARGET_PROGRAM_COUNTER;
|
||||
static inline const std::string name = "GetTargetProgramCounter";
|
||||
static const inline std::string name = "GetTargetProgramCounter";
|
||||
|
||||
[[nodiscard]] CommandType getType() const override {
|
||||
return GetTargetProgramCounter::type;
|
||||
|
||||
@@ -12,7 +12,7 @@ namespace Bloom::TargetController::Commands
|
||||
using SuccessResponseType = Responses::TargetStackPointer;
|
||||
|
||||
static constexpr CommandType type = CommandType::GET_TARGET_STACK_POINTER;
|
||||
static inline const std::string name = "GetTargetStackPointer";
|
||||
static const inline std::string name = "GetTargetStackPointer";
|
||||
|
||||
[[nodiscard]] CommandType getType() const override {
|
||||
return GetTargetStackPointer::type;
|
||||
|
||||
@@ -11,7 +11,7 @@ namespace Bloom::TargetController::Commands
|
||||
using SuccessResponseType = Responses::TargetState;
|
||||
|
||||
static constexpr CommandType type = CommandType::GET_TARGET_STATE;
|
||||
static inline const std::string name = "GetTargetState";
|
||||
static const inline std::string name = "GetTargetState";
|
||||
|
||||
[[nodiscard]] CommandType getType() const override {
|
||||
return GetTargetState::type;
|
||||
|
||||
@@ -16,7 +16,7 @@ namespace Bloom::TargetController::Commands
|
||||
using SuccessResponseType = Responses::TargetMemoryRead;
|
||||
|
||||
static constexpr CommandType type = CommandType::READ_TARGET_MEMORY;
|
||||
static inline const std::string name = "ReadTargetMemory";
|
||||
static const inline std::string name = "ReadTargetMemory";
|
||||
|
||||
Targets::TargetMemoryType memoryType;
|
||||
Targets::TargetMemoryAddress startAddress;
|
||||
|
||||
@@ -13,7 +13,7 @@ namespace Bloom::TargetController::Commands
|
||||
using SuccessResponseType = Responses::TargetRegistersRead;
|
||||
|
||||
static constexpr CommandType type = CommandType::READ_TARGET_REGISTERS;
|
||||
static inline const std::string name = "ReadTargetRegisters";
|
||||
static const inline std::string name = "ReadTargetRegisters";
|
||||
|
||||
Targets::TargetRegisterDescriptors descriptors;
|
||||
|
||||
|
||||
@@ -10,7 +10,7 @@ namespace Bloom::TargetController::Commands
|
||||
{
|
||||
public:
|
||||
static constexpr CommandType type = CommandType::REMOVE_BREAKPOINT;
|
||||
static inline const std::string name = "RemoveBreakpoint";
|
||||
static const inline std::string name = "RemoveBreakpoint";
|
||||
|
||||
Targets::TargetBreakpoint breakpoint;
|
||||
|
||||
|
||||
@@ -8,7 +8,7 @@ namespace Bloom::TargetController::Commands
|
||||
{
|
||||
public:
|
||||
static constexpr CommandType type = CommandType::RESET_TARGET;
|
||||
static inline const std::string name = "ResetTarget";
|
||||
static const inline std::string name = "ResetTarget";
|
||||
|
||||
[[nodiscard]] CommandType getType() const override {
|
||||
return ResetTarget::type;
|
||||
|
||||
@@ -8,7 +8,7 @@ namespace Bloom::TargetController::Commands
|
||||
{
|
||||
public:
|
||||
static constexpr CommandType type = CommandType::RESUME;
|
||||
static inline const std::string name = "Resume";
|
||||
static const inline std::string name = "Resume";
|
||||
|
||||
[[nodiscard]] CommandType getType() const override {
|
||||
return Resume::type;
|
||||
|
||||
@@ -12,7 +12,7 @@ namespace Bloom::TargetController::Commands
|
||||
{
|
||||
public:
|
||||
static constexpr CommandType type = CommandType::RESUME_TARGET_EXECUTION;
|
||||
static inline const std::string name = "ResumeTargetExecution";
|
||||
static const inline std::string name = "ResumeTargetExecution";
|
||||
|
||||
std::optional<Targets::TargetProgramCounter> fromProgramCounter;
|
||||
|
||||
|
||||
@@ -10,7 +10,7 @@ namespace Bloom::TargetController::Commands
|
||||
{
|
||||
public:
|
||||
static constexpr CommandType type = CommandType::SET_BREAKPOINT;
|
||||
static inline const std::string name = "SetBreakpoint";
|
||||
static const inline std::string name = "SetBreakpoint";
|
||||
|
||||
Targets::TargetBreakpoint breakpoint;
|
||||
|
||||
|
||||
@@ -10,7 +10,7 @@ namespace Bloom::TargetController::Commands
|
||||
{
|
||||
public:
|
||||
static constexpr CommandType type = CommandType::SET_TARGET_PIN_STATE;
|
||||
static inline const std::string name = "SetTargetPinState";
|
||||
static const inline std::string name = "SetTargetPinState";
|
||||
|
||||
Targets::TargetPinDescriptor pinDescriptor;
|
||||
Targets::TargetPinState pinState;
|
||||
|
||||
@@ -12,7 +12,7 @@ namespace Bloom::TargetController::Commands
|
||||
{
|
||||
public:
|
||||
static constexpr CommandType type = CommandType::SET_TARGET_PROGRAM_COUNTER;
|
||||
static inline const std::string name = "SetTargetProgramCounter";
|
||||
static const inline std::string name = "SetTargetProgramCounter";
|
||||
|
||||
Targets::TargetProgramCounter address = 0;
|
||||
|
||||
|
||||
@@ -12,7 +12,7 @@ namespace Bloom::TargetController::Commands
|
||||
{
|
||||
public:
|
||||
static constexpr CommandType type = CommandType::STEP_TARGET_EXECUTION;
|
||||
static inline const std::string name = "StepTargetExecution";
|
||||
static const inline std::string name = "StepTargetExecution";
|
||||
|
||||
std::optional<Targets::TargetProgramCounter> fromProgramCounter;
|
||||
|
||||
|
||||
@@ -8,7 +8,7 @@ namespace Bloom::TargetController::Commands
|
||||
{
|
||||
public:
|
||||
static constexpr CommandType type = CommandType::STOP_TARGET_EXECUTION;
|
||||
static inline const std::string name = "StopTargetExecution";
|
||||
static const inline std::string name = "StopTargetExecution";
|
||||
|
||||
[[nodiscard]] CommandType getType() const override {
|
||||
return StopTargetExecution::type;
|
||||
|
||||
@@ -8,7 +8,7 @@ namespace Bloom::TargetController::Commands
|
||||
{
|
||||
public:
|
||||
static constexpr CommandType type = CommandType::SUSPEND;
|
||||
static inline const std::string name = "Suspend";
|
||||
static const inline std::string name = "Suspend";
|
||||
|
||||
[[nodiscard]] CommandType getType() const override {
|
||||
return Suspend::type;
|
||||
|
||||
@@ -11,7 +11,7 @@ namespace Bloom::TargetController::Commands
|
||||
{
|
||||
public:
|
||||
static constexpr CommandType type = CommandType::WRITE_TARGET_MEMORY;
|
||||
static inline const std::string name = "WriteTargetMemory";
|
||||
static const inline std::string name = "WriteTargetMemory";
|
||||
|
||||
Targets::TargetMemoryType memoryType;
|
||||
Targets::TargetMemoryAddress startAddress;
|
||||
|
||||
@@ -10,7 +10,7 @@ namespace Bloom::TargetController::Commands
|
||||
{
|
||||
public:
|
||||
static constexpr CommandType type = CommandType::WRITE_TARGET_REGISTERS;
|
||||
static inline const std::string name = "WriteTargetRegisters";
|
||||
static const inline std::string name = "WriteTargetRegisters";
|
||||
|
||||
Targets::TargetRegisters registers;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user