Forum Discussion

HaiboZ's avatar
HaiboZ
Icon for New Contributor rankNew Contributor
2 years ago

Max10 RSU state machine issue

in i2c_rsu example in 10M016sau324,

find an issue in MAX10_FLASH_INTERFACE

always @(posedge Clock)
begin
if(Reset)
FlashBusy <= 1'b0;
else if(NextFlashCmdAck)
FlashBusy <= 1'b1;
else if(FlashBusyClr )
FlashBusy <= 1'b0;
else
FlashBusy <= FlashBusy;
end
FlashBusy signal will be clear when flash command not complete.

2 Replies

  • WZ2's avatar
    WZ2
    Icon for Frequent Contributor rankFrequent Contributor

    Hi there,

    You mean you use signal tap to capture the signal and show the situation you mentioned?

    Could u please upload the capture~

    Best regards,

    WZ