Replaced targetProgramCounterUpdated signal with new ReadProgramCounter Insight worker task.

Also some other bits of tidying
This commit is contained in:
Nav
2022-09-06 00:51:48 +01:00
parent 8146a442f6
commit 0397cb9aba
11 changed files with 110 additions and 101 deletions

View File

@@ -0,0 +1,20 @@
#pragma once
#include "InsightWorkerTask.hpp"
namespace Bloom
{
class ReadProgramCounter: public InsightWorkerTask
{
Q_OBJECT
public:
ReadProgramCounter() = default;
signals:
void programCounterRead(std::uint32_t programCounter);
protected:
void run(TargetController::TargetControllerConsole& targetControllerConsole) override;
};
}