From fff73c7735618923b865fc93b3187ff323f2a57e Mon Sep 17 00:00:00 2001 From: Kevin O'Connor Date: Mon, 3 Apr 2017 10:10:35 -0400 Subject: [PATCH] avr: Invert diff in timer checks Minor optimization on avr. Signed-off-by: Kevin O'Connor --- src/avr/timer.c | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/src/avr/timer.c b/src/avr/timer.c index 1c4d03a9..a0acac73 100644 --- a/src/avr/timer.c +++ b/src/avr/timer.c @@ -152,8 +152,8 @@ ISR(TIMER1_COMPA_vect) // Run the next software timer next = sched_timer_dispatch(); - int16_t diff = next - timer_get(); - if (likely(diff < 0)) { + int16_t diff = timer_get() - next; + if (likely(diff >= 0)) { // Another timer is pending - briefly allow irqs to fire irq_enable(); if (unlikely(TIFR1 & (1< TIMER_MIN_TRY_TICKS)) + if (likely(diff <= -TIMER_MIN_TRY_TICKS)) // Schedule next timer normally goto done; @@ -173,8 +173,8 @@ ISR(TIMER1_COMPA_vect) if (unlikely(TIFR1 & (1<= 0); + diff = timer_get() - next; + } while (diff < 0); } force_defer: @@ -182,15 +182,13 @@ force_defer: irq_disable(); uint16_t now = timer_get(); if ((int16_t)(next - now) < (int16_t)(-timer_from_us(1000))) - goto fail; + shutdown("Rescheduled timer in the past"); timer_repeat_set(now + TIMER_REPEAT_TICKS); next = now + TIMER_DEFER_REPEAT_TICKS; done: timer_set(next); return; -fail: - shutdown("Rescheduled timer in the past"); } // Periodic background task that temporarily boosts priority of