ab.com コミュニティ
https://www.activebasic.com/forum/

高精度タイマーの使い方
https://www.activebasic.com/forum/viewtopic.php?t=4635
ページ 11

作成者:  Papa [ 2020年2月15日(土) 11:09 ]
記事の件名:  高精度タイマーの使い方

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

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

作成者:  HSABP [ 2020年2月22日(土) 20:21 ]
記事の件名:  Re: 高精度タイマーの使い方

コード:
#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

作成者:  ゲスト [ 2020年3月01日(日) 13:03 ]
記事の件名:  Re: 高精度タイマーの使い方

ありがとうございます。

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

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

難しいですねぇ・・・

ページ 11 全ての表示時間は UTC+09:00 です
Powered by phpBB® Forum Software © phpBB Limited
https://www.phpbb.com/