Everything

debugger.XTrace.Addup

debugger.XTrace.Complement

debugger.XTrace.Mode


This property sets or refers to the tracing options of the debug tool. [IECUBE][IECUBE2][Simulator]

[Specification format]

debugger.XTrace.Addup = addup [Simulator]
debugger.XTrace.Complement = complement [IECUBE[V850]][IECUBE2[V850]]
debugger.XTrace.Mode = traceMode [Simulator][IECUBE][IECUBE2]

[Setting(s)]

Setting

Description

addup

Set whether to add up times/tags.

True: Add up times/tags.

False: Do not add up times/tags.

complement

Set whether to supplement the trace.

True: Supplement the trace.

False: Do not supplement the trace.

traceMode

Set the trace control mode.

The trace control modes that can be specified are shown below.

Type

Description

TraceMode.FullBreak

Stop program execution and writing of trace data after all trace data has been used up.

TraceMode.FullStop

Stop writing trace data after all trace data has been used up.

TraceMode.NonStop

Continue writing trace data even if all trace data has been used up.

[Reference]

Set value

Caution

If a PM+ workspace is converted to a CS+ project, then there will be no debugging tool in the main project. For this reason, "None" will be returned if the main project is the active project.

[Detailed description]

-

This property sets or refers to the tracing options of the debug tool.

[Example of use]

>>>print debugger.XTrace.Addup
False
>>>debugger.XTrace.Addup = True
>>>print debugger.XTrace.Addup
True
>>>