Leffakone's Wakeup Timer Updated
Categories: [ TV/Leffakone ]
The timer was
working almost correctly, except that the most significant byte of the timer
value was mishandled: there was a for 65536 loop
statement, but since the
PIC 16F84a is an 8 bit microcontroller, the value 65536 was understood as 0,
and the MSB of the timer was considered as null. Niko reprogrammed the PIC
using two nested for 256 loop
statements.