Click to See Complete Forum and Search --> : timer


April 12th, 1999, 04:10 PM
How to use a timer inside a timer function?

I need to use a timer inside an OnTimer function.

I want to temporize a 20 mSec. delay to allow data arrive from a serial port.

Chris M.
April 13th, 1999, 09:08 AM
#define IDT_TIMER1 200

...

SetTimer( IDT_TIMER1, 100, NULL ) //1000 ms.

...