We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fd85a61 commit d5c60dcCopy full SHA for d5c60dc
src/eyeTracker.m
@@ -1,4 +1,4 @@
1
-function [el] = eyeTracker(input, cfg)
+function [el, cfg] = eyeTracker(input, cfg)
2
% [el] = eyeTracker(input, cfg)
3
%
4
% Wrapper function that deals with all the necessery actions to implement Eye Tracker recording.
@@ -63,6 +63,10 @@
63
64
% Get EyeLink setup information.
65
[el.v, el.vs] = Eyelink('GetTrackerVersion');
66
+
67
+ % Save EL setup version in cfg
68
+ cfg.eyeTracker.eyeLinkVersionString = el.vs;
69
70
fprintf('Running experiment on a ''%s'' tracker.\n', el.vs);
71
72
% Make sure that we get gaze data from the Eyelink.
0 commit comments