Hi to everybody
I found these 2 lines of code in the main routine:
SetDBGIER(IER); // Configure the DBGIER for realtime debug
asm(" CLRC INTM, DBGM"); // Enable global interrupts and realtime debug
Doing so, I guess that realtime debug is enabled...
I'd like to disabled it, so should I do like this:
//SetDBGIER(IER); // Configure the DBGIER for realtime debug
asm(" CLRC INTM"); // Enable global interrupts and realtime debug
?
I imagine this is a trivial question, but I want to be sure! ....:-)
Are there any kind of problem if realtime debug is enabled even if I'm not using it?
thanks, I'll pay a bier to the first one that answer :-)
samuele