mirror of
https://github.com/MarlinFirmware/Marlin.git
synced 2024-11-23 20:18:52 +00:00
ADC sensor fix inspired by 'Evgen2' on Twitter
This commit is contained in:
parent
b8ddae61e2
commit
662105c1b6
@ -2093,7 +2093,8 @@ void Temperature::isr() {
|
||||
} // temp_count >= OVERSAMPLENR
|
||||
|
||||
// Go to the next state, up to SensorsReady
|
||||
adc_sensor_state = (ADCSensorState)((int(adc_sensor_state) + 1) % int(StartupDelay));
|
||||
adc_sensor_state = (ADCSensorState)(int(adc_sensor_state) + 1);
|
||||
if (adc_sensor_state > SensorsReady) adc_sensor_state = (ADCSensorState)0;
|
||||
|
||||
#if ENABLED(BABYSTEPPING)
|
||||
LOOP_XYZ(axis) {
|
||||
|
Loading…
Reference in New Issue
Block a user