Replaced TargetIoPortsUpdated event with RegistersWrittenToTarget event
This commit is contained in:
@@ -51,7 +51,6 @@ namespace Bloom::Events
|
||||
RETRIEVE_TARGET_PIN_STATES,
|
||||
TARGET_PIN_STATES_RETRIEVED,
|
||||
SET_TARGET_PIN_STATE,
|
||||
TARGET_IO_PORTS_UPDATED,
|
||||
};
|
||||
|
||||
class Event
|
||||
|
||||
@@ -39,7 +39,6 @@
|
||||
#include "RetrieveTargetPinStates.hpp"
|
||||
#include "TargetPinStatesRetrieved.hpp"
|
||||
#include "SetTargetPinState.hpp"
|
||||
#include "TargetIoPortsUpdated.hpp"
|
||||
|
||||
namespace Bloom::Events
|
||||
{
|
||||
|
||||
@@ -1,23 +0,0 @@
|
||||
#pragma once
|
||||
|
||||
#include <string>
|
||||
|
||||
#include "Event.hpp"
|
||||
|
||||
namespace Bloom::Events
|
||||
{
|
||||
class TargetIoPortsUpdated: public Event
|
||||
{
|
||||
public:
|
||||
static inline EventType type = EventType::TARGET_IO_PORTS_UPDATED;
|
||||
static inline const std::string name = "TargetIoPortsUpdated";
|
||||
|
||||
[[nodiscard]] EventType getType() const override {
|
||||
return TargetIoPortsUpdated::type;
|
||||
}
|
||||
|
||||
[[nodiscard]] std::string getName() const override {
|
||||
return TargetIoPortsUpdated::name;
|
||||
}
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user