ルネサス
debugger.Timer.Set
条件タイマを設定します。
[指定形式]
debugger.Timer.Set(TimerCondition)
[引数]
引数
説明
TimerCondition
条件タイマの条件を指定します。
条件タイマの作成については,TimerConditionクラスを参照してください。
[戻り値]
設定したタイマ・イベント番号(数値)
[詳細説明]
-
TimerConditionで指定されている内容に従って,条件タイマを設定します。
設定した条件タイマは,以下の名前で登録されます。 数字は4桁の10進数です。
Pythonタイマ 数字
[使用例]
>>>tc = TimerCondition()
>>>tc.StartAddress = "main"
>>>tc.EndAddress = "chData"
>>>tc.EndData = 0x20
>>>tc.EndTimerType = TimerType.Write
>>>ts_number = debugger.Timer.Set(tc)
1
>>>print ts_number