Everything

XTimeInfo


This class holds timer information (return value of the debugger.XTime function).

[Type]

class XTimeInfo:
        Value = 0
        IsCpuClock = False
        IsOverFlow = False

[Variable]

Variable

Description

Value

This holds the timer measurement.

IsCpuClock

This holds whether this is a CPU clock measurement or not.

True: This is a CPU clock measurement.

False: Otherwise.

IsOverFlow

This holds whether an overflow has occurred or not.

True: An overflow has occurred.

False: An overflow has not occurred.

[Detailed description]

-

XTimeInfo is a class, and it is the structure of the return value from the debugger.XTime function.

[Example of use]

>>>info = debugger.XTime()
9820214200nsec
>>>print info.Value
9820214200
>>>print info.IsCpuClock
False
>>>print info.IsOverFlow
False
>>>