Forum Discussion
Altera_Forum
Honored Contributor
8 years ago --- Quote Start --- Hi, Double check that all possible transitions out of the state after the first frame are decoded are taken care of. For example, if you have a bunch of If else conditions, or a case statement, make sure you either have a default next state defined, or ensure that each subsection has a next state defined. From what you have written about your problem, it looks like it is stuck in the same state . This could be that your default action is to remain in that state till you receive an input to transition to the next state, and it never receives it. Check if the conditions that you are waiting for is a valid one. --- Quote End --- thanks for your reply. I have checked all possible transitions. If my FSM is stuck in any one state then I can solve out this by modifying some conditions in the if..else loop but here in my case, FSM does not stay in any case of five cases of FSM. So if you have faced this kind of problem in past then let me know the reason for that so I can solve out this issue.