Forum Discussion
sstrell
Super Contributor
6 years agoI think you have to look at the toggling of GPIO_1[9] since that seems to be what's required to continue the count.
#iwork4intel
JUNIOR
New Contributor
6 years agoThanks and I solve it by add one flip-flop to eliminate the glitch, replace GPIO with synchronized register
always@(negedge CLOCK_50)
begin
REG_GPIO_1_9<= GPIO_1[9];
end