I use the Timer 0 for an application, but I want at the end of this application use the function "Delay()".
The problem is : I change de registre for the timer 0 and logically, after I can't use the Delay function.
I want to find the parametres of the registre to use for delay().
On AVR Arduinos timer 0 ticks every 4us, this causes the 8-bit timer to overflow every 1ms, (4us * 256).
If you require the delay() function it's not possible to change this, however it is still possible to use timer 0's COMPA and COMPB interrupt service routines, if you need to run code at a 1ms interval.