Hello,
I am uisng a 16MHz clock. My question is that if I use the "__delay_cycles();" function, what is the higiest value that I can use in it? for example,
int i; //Wait 5 seconds for(i=0;i<5;i++) { __delay_cycles(16000000); }
If I use this code, I'll get a 5 second delay as my clock frequency is 16MHz. What is the maximum value that I can put in the "__delay_cycles();" function without using the for loop and why?
Thank You.