This class holds pseudo-timer information (return value of debugger.PseudoTimer.Information function). [RL78 instruction simulator]
[Type]
class PseudoTimerInfo:
Number = None
VectorAddr = None
Priority = None
IntervalTime = None
IntervalTimeUnit = None
Periodic = None
|
[Variable]
|
|
Number
|
This holds the pseudo-timer number.
|
VectorAddr
|
This holds the vector address of the interrupt to be generated when the interval time of the pseudo-timer matches the condition.
|
Priority
|
This holds the interrupt priority.
|
IntervalTime
|
This holds the interval time of the pseudo-timer.
|
IntervalTimeUnit
|
This holds the unit of the interval time.
The following lists the specifiable units.
|
|
|
IntervalTimeUnit.Min
|
Minutes
|
IntervalTimeUnit.S
|
Seconds
|
IntervalTimeUnit.Ms
|
Milliseconds
|
IntervalTimeUnit.Us
|
Microseconds
|
IntervalTimeUnit.Ns
|
Nanoseconds
|
IntervalTimeUnit.Clock
|
CPU clock cycles
|
Periodic
|
This holds whether an interrupt is to be generated each time the specified time elapses.
True: An interrupt is generated each time the specified interval elapses.
False: An interrupt is only generated once.
|
[Detailed description]
- | PseudoTimerInfo is a class, and it is passed as the return value when the debugger.PseudoTimer.Information function is executed. |