Skip to content

Commit

Permalink
Fix event stream names for synchronization
Browse files Browse the repository at this point in the history
  • Loading branch information
medengineer committed Jan 12, 2023
1 parent 182beb2 commit bb6c18c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@

numEvents = length(lines);

self.ttlEvents(fullStreamName) = DataFrame(abs(lines), sampleNumbers, timestamps, processorId*ones(numEvents,1), repmat(string(streamName),numEvents,1), lines > 0, ...
self.ttlEvents(fullStreamName) = DataFrame(abs(lines), sampleNumbers, timestamps, processorId*ones(numEvents,1), repmat(string(fullStreamName),numEvents,1), lines > 0, ...
'VariableNames', {'line','sample_number','timestamp','processor_id', 'stream_name', 'state'});

streamIdx = streamIdx + 1;
Expand Down

0 comments on commit bb6c18c

Please sign in to comment.