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
With more than one read or duplex operation, the read buffer is filled with only the value of the last operation requested.
Caused by line
return [transfer.to_read_bytes() for t in transfers if t.has_read_buf]
in spi.py; suggest it be changed to
return [t.to_read_bytes() for t in transfers if t.has_read_buf]
The text was updated successfully, but these errors were encountered:
With more than one read or duplex operation, the read buffer is filled with only the value of the last operation requested.
Caused by line
return [transfer.to_read_bytes() for t in transfers if t.has_read_buf]
in spi.py; suggest it be changed to
return [t.to_read_bytes() for t in transfers if t.has_read_buf]
The text was updated successfully, but these errors were encountered: