Skip to content

Commit

Permalink
fix: visual stimulus not showing for first trial
Browse files Browse the repository at this point in the history
  • Loading branch information
bimac committed Oct 18, 2024
1 parent 714218d commit 57f2df4
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
Changelog
=========

8.24.5
------
* fix: visual stimulus not showing for first trial

8.24.4
------
* fix: correct gain for rotary encoder thresholds in trainingChoiceWorld
Expand Down
2 changes: 1 addition & 1 deletion iblrig/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
# 5) git tag the release in accordance to the version number below (after merge!)
# >>> git tag 8.15.6
# >>> git push origin --tags
__version__ = '8.24.4'
__version__ = '8.24.5'


from iblrig.version_management import get_detailed_version_string
Expand Down
2 changes: 2 additions & 0 deletions iblrig/base_tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -906,6 +906,8 @@ def choice_world_visual_stimulus(self):
'Stim.TranslationZ': -self.task_params.STIM_TRANSLATION_Z, # MINUS!!
}
call_bonsai(workflow_file, parameters, wait=False, editor=self.task_params.BONSAI_EDITOR, bootstrap=False)
log.info('Giving Bonsai some extra time to start ...')
time.sleep(5)
log.info('Bonsai visual stimulus module loaded: OK')


Expand Down

0 comments on commit 57f2df4

Please sign in to comment.