added V2 frame to support custom HLAs
Some checks failed
Build / windows (push) Has been cancelled
Build / macos (push) Has been cancelled
Build / linux (push) Has been cancelled
Build / publish (push) Has been cancelled

This commit is contained in:
2025-12-22 21:43:50 +01:00
parent b759e3e6aa
commit 0bcef21995

View File

@@ -82,11 +82,14 @@ void TLC59731Analyzer::WorkerThread()
frame.mFlags = 0;
frame.mStartingSampleInclusive = starting_sample;
frame.mEndingSampleInclusive = mSerial->GetSampleNumber();
mResults->AddFrame( frame );
mResults->CommitResults();
ReportProgress( frame.mEndingSampleInclusive );
FrameV2 framev2;
framev2.AddInteger("data", frame.mData1);
mResults->AddFrameV2(framev2, "ledData", frame.mStartingSampleInclusive, frame.mEndingSampleInclusive);
mResults->CommitResults();
data = 0;
mSerial->AdvanceToNextEdge();
SoB = mSerial->GetSampleNumber();