Skip to content

Commit

Permalink
Merge pull request #25 from byuccl/fix-async-uart
Browse files Browse the repository at this point in the history
Fix async uart bug
  • Loading branch information
jgoeders authored Nov 20, 2024
2 parents 5b62256 + 35eae8e commit cd45ca5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
setup(
name="yinstruments",
packages=find_packages(),
version="1.6.1",
version="1.6.2",
description="Experiment device control scripts for BYU's Configurable Computing Lab (https://ccl.byu.edu/)",
author="Jeff Goeders",
author_email="jeff.goeders@gmail.com",
Expand Down
2 changes: 1 addition & 1 deletion yinstruments/async_reader.py
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ def __init__(self, serial):

# raise SerialNoFullLine

def get_data(self):
def _get_data(self):
return self.serial.read_until()


Expand Down

0 comments on commit cd45ca5

Please sign in to comment.