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
Although I just noticed that rd_ready_r is reset after one clk, so I'm updating my test to latch it to be sure that it is noticed by the host interface.
The text was updated successfully, but these errors were encountered:
Is the sense of the SDRAM's
rd_busy
incorrect? In the verilog code the logic is: https://github.com/pmezydlo/BeagleWire/blob/master/components/sdram_controller.v#L161Which makes
rd_ready
an active high signal when the read has data available. However, thesdram.c
code calls itrd_busy
and appears to spin waiting for it to go back to 0: https://github.com/pmezydlo/BeagleWire/blob/master/bridge_lib/sdram.c#L72 andBeagleWire/bridge_lib/sdram.c
Line 102 in 31e636b
Although I just noticed that
rd_ready_r
is reset after oneclk
, so I'm updating my test to latch it to be sure that it is noticed by the host interface.The text was updated successfully, but these errors were encountered: