|
@@ -1489,6 +1489,9 @@ void Temperature::set_current_temp_raw() {
|
1489
|
1489
|
ISR(TIMER0_COMPB_vect) { Temperature::isr(); }
|
1490
|
1490
|
|
1491
|
1491
|
void Temperature::isr() {
|
|
1492
|
+ //Allow UART and stepper ISRs
|
|
1493
|
+ CBI(TIMSK0, OCIE0B); //Disable Temperature ISR
|
|
1494
|
+ sei();
|
1492
|
1495
|
|
1493
|
1496
|
static uint8_t temp_count = 0;
|
1494
|
1497
|
static TempState temp_state = StartupDelay;
|
|
@@ -1940,4 +1943,6 @@ void Temperature::isr() {
|
1940
|
1943
|
if (!endstop_monitor_count) endstop_monitor(); // report changes in endstop status
|
1941
|
1944
|
}
|
1942
|
1945
|
#endif
|
|
1946
|
+
|
|
1947
|
+ SBI(TIMSK0, OCIE0B); //re-enable Temperature ISR
|
1943
|
1948
|
}
|