Skip to content

Commit

Permalink
quite mode and stim rejection
Browse files Browse the repository at this point in the history
Changed the default mode to quite mode on.
Changed StimClass default value of "more" to 1 from []. [] wasa breaking the code at line 471:
"            obj.data = [obj.data; tPts, duration, amp, more];"
  • Loading branch information
mayucel committed Dec 13, 2023
1 parent 8fd1d55 commit d60b6af
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion DataTree/AcquiredData/Snirf/StimClass.m
Original file line number Diff line number Diff line change
Expand Up @@ -459,7 +459,7 @@ function AddStims(obj, tPts, duration, amp, more)
amp = ones(length(tPts),1);
end
if ~exist('more', 'var')
more = [];
more = 1;
end

if length(duration) < length(tPts)
Expand Down
2 changes: 1 addition & 1 deletion DataTree/AppSettings.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ No
No

% Quiet Mode # On, Off
Off
On

% Replace TSV File Tabs with Spaces # auto-replace, ask me, don't replace and don't ask me
ask me
Expand Down

0 comments on commit d60b6af

Please sign in to comment.