Skip to content

Commit 2e4b20a

Browse files
authored
Merge pull request #26 from Remi-Gau/remi-testing_in_liege
add changes from testing in Liege
2 parents 30ec3b5 + 1b7791c commit 2e4b20a

File tree

4 files changed

+10
-8
lines changed

4 files changed

+10
-8
lines changed

audioLocTranslational.m

+1-1
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@
152152

153153
eyeTracker('Shutdown', cfg);
154154

155-
createBoldJson(cfg, cfg);
155+
createJson(cfg, cfg);
156156

157157
farewellScreen(cfg);
158158

lib/CPP_BIDS

lib/CPP_PTB

setParameters.m

+7-5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
function cfg = setParameters
22

3+
% AUDITORY LOCALIZER
4+
35
% Initialize the parameters and general configuration variables
46
cfg = struct();
57

@@ -12,7 +14,7 @@
1214

1315
%% Debug mode settings
1416

15-
cfg.debug.do = true; % To test the script out of the scanner, skip PTB sync
17+
cfg.debug.do = false; % To test the script out of the scanner, skip PTB sync
1618
cfg.debug.smallWin = false; % To test on a part of the screen, change to 1
1719
cfg.debug.transpWin = false; % To test with trasparent full size screen
1820

@@ -21,7 +23,7 @@
2123
%% Engine parameters
2224

2325
cfg.testingDevice = 'mri';
24-
cfg.eyeTracker.do = false;
26+
cfg.eyeTracker.do = true;
2527
cfg.audio.do = true;
2628

2729
cfg = setMonitor(cfg);
@@ -56,7 +58,7 @@
5658
cfg.timing.eventDuration = 0.850; % second
5759

5860
% Time between blocs in secs
59-
cfg.timing.IBI = 1.8;
61+
cfg.timing.IBI = 0;
6062
% Time between events in secs
6163
cfg.timing.ISI = 0;
6264
% Number of seconds before the motion stimuli are presented
@@ -73,7 +75,7 @@
7375
cfg.timing.eventDuration = cfg.mri.repetitionTime / 2 - 0.04; % second
7476

7577
% Time between blocs in secs
76-
cfg.timing.IBI = 1;
78+
cfg.timing.IBI = 0;
7779
% Time between events in secs
7880
cfg.timing.ISI = 0;
7981
% Number of seconds before the motion stimuli are presented
@@ -148,7 +150,7 @@
148150
function cfg = setMRI(cfg)
149151
% letter sent by the trigger to sync stimulation and volume acquisition
150152
cfg.mri.triggerKey = 't';
151-
cfg.mri.triggerNb = 0;
153+
cfg.mri.triggerNb = 5;
152154

153155
cfg.mri.repetitionTime = 1.8;
154156

0 commit comments

Comments
 (0)