Safe 6 byte of flash.
This commit is contained in:
parent
89ae3edfcb
commit
39960a20c6
1 changed files with 1 additions and 1 deletions
|
@ -76,7 +76,7 @@ ISR (TIMER1_COMPA_vect)
|
||||||
// Possible delays are 8 16 24 32 and so on. A zero delay isn't possible.
|
// Possible delays are 8 16 24 32 and so on. A zero delay isn't possible.
|
||||||
// Zero means that a delay of 255 happens because the delay variable was decreased first before testing
|
// Zero means that a delay of 255 happens because the delay variable was decreased first before testing
|
||||||
// it's is zero value.
|
// it's is zero value.
|
||||||
delay = (frame & 0xf8000000) >> 24;
|
delay = (frame >> 24) & 0xf8;
|
||||||
}
|
}
|
||||||
|
|
||||||
// PORTD = __, 9, C, B, A,D+,D-,__
|
// PORTD = __, 9, C, B, A,D+,D-,__
|
||||||
|
|
Loading…
Reference in a new issue