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
The read functional fails to get the last value returned in a sequence of reads. If you request a single address, no data will be returned, if you request n addresses, n-1 values will be returned. Simply replacing start_soon with fork fixes this issues, however, I know fork is deprecated.
This could potentially be fixed by changing cocotb.start_soon(self._read()) to await cocotb.start(self._read()). I wish I knew the difference I guess I should read up on that.
The text was updated successfully, but these errors were encountered:
The read functional fails to get the last value returned in a sequence of reads. If you request a single address, no data will be returned, if you request n addresses, n-1 values will be returned. Simply replacing start_soon with fork fixes this issues, however, I know fork is deprecated.
This could potentially be fixed by changing cocotb.start_soon(self._read()) to await cocotb.start(self._read()). I wish I knew the difference I guess I should read up on that.
The text was updated successfully, but these errors were encountered: