Forum Discussion
Altera_Forum
Honored Contributor
10 years agoneed help on state machine. Illegal character
I try to build state machine in the IEEE 1394b page 446 (pic attach) by using wizard on Quartus. When I try to build condition from R1 to R0. I have problem with the "+". Do you have any suggestion?...
Altera_Forum
Honored Contributor
10 years agoyou need to convert expression like "arbTimer >=resetDuration + RESET_WAIT" to boolean equivalent like "cond_input = (arbTimer >=resetDuration + RESET_WAIT) "
and use cond_input in stateflow diagramm. I advise you to replace complex condition with simple one, and later in code you can insert how to calculate it .