Remove unnecessary assignment
This commit is contained in:
parent
eafdf6c216
commit
7bd43b77d7
|
|
@ -153,7 +153,6 @@ ISR(TIMER0_OVF_vect) // timer compare interrupt service routine
|
||||||
return; // want full duty for the next ONE cycle again - so keep on heating and just wait for the next timer ovf
|
return; // want full duty for the next ONE cycle again - so keep on heating and just wait for the next timer ovf
|
||||||
}
|
}
|
||||||
// otherwise moving towards FALL
|
// otherwise moving towards FALL
|
||||||
state = States::ONE;//_TO_FALL;
|
|
||||||
state=States::FALL;
|
state=States::FALL;
|
||||||
fastCounter = fastMax - 1;// we'll do 16-1 cycles of RISE
|
fastCounter = fastMax - 1;// we'll do 16-1 cycles of RISE
|
||||||
TCNT0 = 255; // force overflow on the next clock cycle
|
TCNT0 = 255; // force overflow on the next clock cycle
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue