Link to home
Start Free TrialLog in
Avatar of biroadam
biroadam

asked on

Real-time timer

I need a better timer than the TTimer component. I know there is no perfect timer under Windows 95, but what the TTimer does is quite unacceptable. (The TTimer gives on a 100 MHz Pentium, with the timer interval set to 1,  about 24 timer events per sec -- instead of 1000! Note that the test application was 'honest', doing nothing else in the OnTimer event handler than incrementing a counter.)

I have had the followings ideas.

1. Modifying the priority of the main thread, with the following code in the OnCreate method of the main form:

  mythread:=GetCurrentThread;
  SetThreadPriority(mythread,THREAD_PRIORITY_TIME_CRITICAL);

It makes ABSOLUTELY no difference.


2. Using the SetTimer API function with callback function instead of message posting. I haven't tried it, because the Win32 help says the following:

"When you specify a TimerProc callback function, the DispatchMessage function simply calls the callback function instead of the window procedure. Therefore, you need to dispatch messages in the calling thread, even when you use TimerProc instead of processing WM_TIMER."

So I have the feeling that it won't help me either.


3. Using a driver-level IRQ callback function.

I'm able to handle the IRQ interrupts under Delphi, using an external VxD which can call my Delphi code as callback function when an interrupt arrives, but I don't know whether the timer works with IRQ, and if so, what IRQ should I handle; I'm also not sure that the Windows 95 will share this IRQ with my VxD.


Waiting for ideas and comments,
Adam
ASKER CERTIFIED SOLUTION
Avatar of tongalite
tongalite

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of biroadam
biroadam

ASKER

Hi tongalite!

Sounds pretty good!
My e-mail address is biroadam@softhome.net, I'm waiting for the components.

Best regards,
Adam
Avatar of kretzschmar
get this sample from simonet

entitled

How To Create High Precision Timers (Multimedia timers)
This project is aimed towards those that think Delphi's TTimer is not precise enought. The solution for that is to create a much more precise and reliable timer, a multimedia timer. This how-to project will teach you how to work with them and discuss when to use a multimedia timer and when to use a system timer (TTimer).  


http://www.bhnet.com.br/~simonet/archive/mmtimer.zip
Hello

  you can find alot types of timers at torry site, and most of them free

http://www.torry.net/timers.htm

Hi everybody!

The problem is actually very simple, there are two Windows API functions designed especially for realtime (multimedia) applications, called TimeSetEvent and a TimeKillEvent.

These functions work with a callback function rather than windows messages, and so they are quite accurate.

Actually I realised this reading the sample sent by kretzschmar, however the question is locked by tongalite.
Since I guess tongalite's answer is also correct (but I haven't received the components yet), I'll wait for it.

Thanks to everybody,
Adam
Sorry guys.... (and gals) Must have hit the proposed answer button when all I intended was to make a comment. I'll try not to let that happen again.

Adam,
The comps have been mailed.... Hope they are of use to you.
T.
Hi tongalite,

As I was sure, your answer was as well as the others. There was only a TIMING problem...

Thank you again,
Adam