Altera_Forum
Honored Contributor
13 years agoDebugging NIOS code in hardware while TIMER is running.
Hi,
Im running my NIOS code i hardware and want to step through the code from a certain breakpoint but its not possible. I guess that my problem is that the timer is running.main(){
..
...
.
timer_init(); //10ms
while(1){
.
...
funcX();
...
}
}
funcX(){
...
....
break!!!
...
...
...
..
} Is it possible to debug a function while a timer is running?