Forum Discussion
Altera_Forum
Honored Contributor
8 years agoHi,
Double check that all possible transitions out of the state after the first frame is 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.