Do not recursively enter temperature_isr

Disable the interrupt source instead, which avoids the added latency of
reentering the isr in the first place.
This commit is contained in:
Yuri D'Elia 2022-05-14 18:03:43 +02:00
parent 82e221e3c7
commit 2535d072c4
1 changed files with 5 additions and 9 deletions

View File

@ -1777,15 +1777,11 @@ ISR(TIMER2_COMPB_vect)
ISR(TIMER0_COMPB_vect)
#endif //SYSTEM_TIMER_2
{
static bool _lock = false;
if (!_lock)
{
_lock = true;
sei();
temperature_isr();
cli();
_lock = false;
}
DISABLE_TEMPERATURE_INTERRUPT();
sei();
temperature_isr();
cli();
ENABLE_TEMPERATURE_INTERRUPT();
}
void check_max_temp()