2021-04-04 21:04:12 +01:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#include <memory>
|
|
|
|
|
|
|
|
|
|
#include "Event.hpp"
|
|
|
|
|
#include "StopTargetExecution.hpp"
|
|
|
|
|
#include "ResumeTargetExecution.hpp"
|
|
|
|
|
#include "ResetTarget.hpp"
|
|
|
|
|
#include "DebugSessionStarted.hpp"
|
|
|
|
|
#include "DebugSessionFinished.hpp"
|
2021-05-24 21:09:50 +01:00
|
|
|
#include "TargetControllerThreadStateChanged.hpp"
|
2021-05-30 16:52:32 +01:00
|
|
|
#include "ReportTargetControllerState.hpp"
|
|
|
|
|
#include "TargetControllerStateReported.hpp"
|
2021-04-04 21:04:12 +01:00
|
|
|
#include "ShutdownTargetController.hpp"
|
|
|
|
|
#include "TargetControllerErrorOccurred.hpp"
|
|
|
|
|
#include "ShutdownApplication.hpp"
|
2021-05-24 21:09:50 +01:00
|
|
|
#include "DebugServerThreadStateChanged.hpp"
|
2021-04-04 21:04:12 +01:00
|
|
|
#include "ShutdownDebugServer.hpp"
|
|
|
|
|
#include "RetrieveRegistersFromTarget.hpp"
|
|
|
|
|
#include "RegistersRetrievedFromTarget.hpp"
|
|
|
|
|
#include "WriteRegistersToTarget.hpp"
|
|
|
|
|
#include "RegistersWrittenToTarget.hpp"
|
|
|
|
|
#include "TargetExecutionResumed.hpp"
|
|
|
|
|
#include "TargetExecutionStopped.hpp"
|
|
|
|
|
#include "RetrieveMemoryFromTarget.hpp"
|
|
|
|
|
#include "MemoryRetrievedFromTarget.hpp"
|
|
|
|
|
#include "WriteMemoryToTarget.hpp"
|
|
|
|
|
#include "MemoryWrittenToTarget.hpp"
|
|
|
|
|
#include "SetBreakpointOnTarget.hpp"
|
|
|
|
|
#include "RemoveBreakpointOnTarget.hpp"
|
|
|
|
|
#include "BreakpointSetOnTarget.hpp"
|
|
|
|
|
#include "BreakpointRemovedOnTarget.hpp"
|
|
|
|
|
#include "StepTargetExecution.hpp"
|
|
|
|
|
#include "SetProgramCounterOnTarget.hpp"
|
|
|
|
|
#include "ProgramCounterSetOnTarget.hpp"
|
|
|
|
|
#include "ExtractTargetDescriptor.hpp"
|
|
|
|
|
#include "TargetDescriptorExtracted.hpp"
|
2021-05-30 16:52:32 +01:00
|
|
|
#include "InsightThreadStateChanged.hpp"
|
2021-04-04 21:04:12 +01:00
|
|
|
#include "RetrieveTargetPinStates.hpp"
|
|
|
|
|
#include "TargetPinStatesRetrieved.hpp"
|
|
|
|
|
#include "SetTargetPinState.hpp"
|
|
|
|
|
#include "TargetIoPortsUpdated.hpp"
|
|
|
|
|
|
|
|
|
|
namespace Bloom::Events
|
|
|
|
|
{
|
|
|
|
|
template <class EventType>
|
2021-06-22 03:06:20 +01:00
|
|
|
using SharedEventPointer = std::shared_ptr<const EventType>;
|
2021-04-04 21:04:12 +01:00
|
|
|
|
2021-08-19 22:06:59 +01:00
|
|
|
template <class EventType>
|
|
|
|
|
using SharedEventPointerNonConst = std::shared_ptr<EventType>;
|
|
|
|
|
|
2021-06-22 03:06:20 +01:00
|
|
|
using SharedGenericEventPointer = SharedEventPointer<Event>;
|
2021-04-04 21:04:12 +01:00
|
|
|
}
|