You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
During my evaluation of this library, I believe I came across a bug that was introduced in 913ac51 in BBIO_base.response():
the return value was changed from data to data.decode()
which will raise a UnicodeDecodeError when reading or writing values greater than 0x7F.
I was testing the SPI bus using Python 3.5.
I apologize for not submitting a pull request but I believe this change in response() behavior affects the other subclasses of BBIO wherever response() is called, and have decided to go with pyBusPirate instead.
Samir
The text was updated successfully, but these errors were encountered:
Hello,
During my evaluation of this library, I believe I came across a bug that was introduced in 913ac51 in BBIO_base.response():
the return value was changed from
data
todata.decode()
which will raise a UnicodeDecodeError when reading or writing values greater than 0x7F.
I was testing the SPI bus using Python 3.5.
I apologize for not submitting a pull request but I believe this change in response() behavior affects the other subclasses of BBIO wherever response() is called, and have decided to go with pyBusPirate instead.
Samir
The text was updated successfully, but these errors were encountered: