Skip to content

Commit

Permalink
8.12.2
Browse files Browse the repository at this point in the history
  • Loading branch information
bimac committed Nov 1, 2023
1 parent e8e2625 commit b2347ca
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
Changelog
---------

8.12.2
------
* bugfix: rollback skipping of bpod initialization (possible source of integer overflow)
* removal of dead code

8.12.1
------
Expand Down
2 changes: 1 addition & 1 deletion iblrig/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# 3) Check CI and eventually wet lab test
# 4) Pull request to iblrigv8
# 5) git tag the release in accordance to the version number below (after merge!)
__version__ = '8.12.1'
__version__ = '8.12.2'

# The following method call will try to get post-release information (i.e. the number of commits since the last tagged
# release corresponding to the one above), plus information about the state of the local repository (dirty/broken)
Expand Down
3 changes: 2 additions & 1 deletion iblrig/hardware.py
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,8 @@ def set_status_led(self, state: bool) -> bool:
return True
except serial.SerialException:
pass
self._arcom.serial_object.flush()
self._arcom.serial_object.reset_input_buffer()
self._arcom.serial_object.reset_output_buffer()
log.error('Bpod device does not support control of the status LED. Please update firmware.')
return False

Expand Down

0 comments on commit b2347ca

Please sign in to comment.