I have a question here please help me understand, lets say i am running 2 timer interrupts both are called after 2ms and also i am running a third timer to measure delay so will this simultaneous execution of interrupts with such small time will effect the accuracy of the reading in my Timer?
I just want to clear my concepts regarding this
Timer1_intialization(); timer2_initialization(); timer3_initialization(); ISR(timer1) ISR(timer2) main() { I read the 3rd timer value here... WILL this value be 100 percent correct or there will be some error because of the 2 other timers running. }