高精度タイマーの使い方

ActiveBasicでのプログラミングでわからないこと、困ったことなどがあったら、ここで質問してみましょう(質問を行う場合は、過去ログやWeb上であらかじめ問題を整理するようにしましょう☆)。
返信する
メッセージ
作成者
Papa

高精度タイマーの使い方

#1 投稿記事 by Papa »

SetTimer()を使用していましたが誤差が大きいので、高精度なタイマーの使い方(サンプル希望)を
教えていただけませんか。

timeSetEvent()またはCreateTimerQueue()を試そうと挑戦していますが、難しくて理解できません。
HSABP

Re: 高精度タイマーの使い方

#2 投稿記事 by HSABP »

コード: 全て選択

#N88BASIC

Type TIMECAPS
        wPeriodMin As Long
        wPeriodMax As Long
End Type
Const TIME_PERIODIC = 1

Declare Function timeGetDevCaps Lib "winmm.dll" (lpTimeCaps As *TIMECAPS, uSize As Long) As Long
Declare Function timeSetEvent Lib "winmm" (uDelay As DWord, uResolution As DWord, lpFunction As DWord, dwUser As *DWord, uFlags As DWord) As DWord
Declare Function timeBeginPeriod Lib "winmm" (uPeriod As DWord) As DWord
Declare Function timeEndPeriod Lib "winmm" (uPeriod As DWord) As DWord
Declare Function timeKillEvent Lib "winmm" (uTimerID As DWord) As DWord


Dim tc As TIMECAPS
Dim timerID As DWord
Dim res As Long
Dim count As DWord
Dim s As String


count = 0

timeGetDevCaps(VarPtr(tc), SizeOf(TIMECAPS))
Print "タイマー分解能"
Print "最小値=";tc.wPeriodMin
Print "最大値=";tc.wPeriodMax

timeBeginPeriod(tc.wPeriodMin)

res = 300'タイマ間隔

timerID = timeSetEvent(res, res,  AddressOf(TimerCallback), 0, TIME_PERIODIC)

Sub TimerCallback(id As DWORD, msg As DWORD, usr As DWORD, dw1 As DWORD, dw2 As DWORD)

	count = count + 1
	Print count ; "回タイマー呼ばれました"
	If count = 10 Then
		timeKillEvent(timerID)
		timeEndPeriod(tc.wPeriodMin)
		Print "タイマーおわり"
	End If
End Sub	

Sleep(res*11)
Print "なにかキーを押してください"
Input s
End
ゲスト

Re: 高精度タイマーの使い方

#3 投稿記事 by ゲスト »

ありがとうございます。

とても参考になりました。

長時間動作させると、ハンドルリークが問題になりました。
メインタスクにてtimerIDを開放する必要が有りそうです。

難しいですねぇ・・・
返信する