Skip to content
Snippets Groups Projects
Commit 74184dee authored by Cristian Galperti's avatar Cristian Galperti
Browse files

node09 load data time inconsistency removed

parent c863ec1c
No related branches found
No related tags found
No related merge requests found
...@@ -345,9 +345,11 @@ classdef SCDclass_taskmdsloadprevADC < SCDclass_task ...@@ -345,9 +345,11 @@ classdef SCDclass_taskmdsloadprevADC < SCDclass_task
if obj.verbose==1 if obj.verbose==1
fprintf('100%% \n'); fprintf('100%% \n');
end end
T.Data=single(thread02time'); % Need to delay by 1 sample since ADC acquired on the sync
% thread w.r.t these signal
T.Data=single([thread02time(2:end) thread02time(end)]');
time=T; time=T;
T.Data=int32(samplecnt'); T.Data=int32([samplecnt(2:end) samplecnt(end)]');
samplecnt=T; samplecnt=T;
end end
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment