Stop-Watch Timer
A Stop-Watch Timer that displays in real-time up to 100 hours with 1/100th Second resolution. It demonstrates a use of PICBASIC PRO interrupts and (most significantly for a timer) accounts for the fact that PBP doesn't jump to servicing that interrupt immediately. A Calibration feature is also included to fine-tune the time-keeping. Written by Melanie Newman
olympictimer.pdf
Re: Erratic LED blinking
First thing that seems unusual to me is LCDOUT inside the ISR handler. That is something I would not do.
Jerson Today, 03:04Secondly, there is a statement if freq < 68 then freq = 136 followed by freq = freq/68. As...