पावर फैक्टर करेक्शन कैलकुलेटर — सूत्र
Understanding Interrupt Latency
Interrupt latency is the delay from when an interrupt occurs to when the ISR begins executing.
Components
Total Cycles = Sync + Pipeline Flush + Context Save + Vector Fetch
Latency (ns) = Total Cycles / Clock Frequency x 10^9
Breakdown
ARM Cortex-M3/M4 processors achieve 12 cycles total. Simpler 8-bit MCUs may take 4-6 cycles.
हल किया गया उदाहरण
72 MHz ARM Cortex-M: 2 sync, 3 pipeline, 12 context save, 3 vector fetch.
- Total cycles: 2 + 3 + 12 + 3 = 20
- Latency: 20 / 72e6 x 1e9 = 277.8 ns
- Max interrupt rate: 72e6 / 20 = 3,600,000 Hz