debugger.SoftwareTraceLPD.RecordingMode
|
This property sets or refers to the operation of the debug tool when the memory for recording software trace information (LPD output) becomes full. [RH850][E2]
[Specification format]
debugger.SoftwareTraceLPD.RecordingMode = recordingMode
|
[Setting(s)]
|
|
recordingMode
|
Set the operation of the debug tool when the memory for recording software trace information (LPD output) becomes full.
The values that can be specified are shown below.
|
|
|
TraceMode.FullBreak
|
Execution of the program and the writing of trace data stop when the recording memory is full.
|
TraceMode.FullStop
|
The writing of trace data stop when the recording memory is full.
|
TraceMode.NonStop
|
Trace data continue to be overwritten even after the recording memory is full.
|
[Reference]
The current setting for the operation of the debug tool when the memory for recording software trace information (LPD output) becomes full
[Detailed description]
- | This property sets or refers to the operation of the debug tool when the memory for recording software trace information (LPD output) becomes full. |
[Example of use]
>>>print debugger.SoftwareTraceLPD.RecordingMode
NonStop
>>>debugger.SoftwareTraceLPD.RecordingMode = TraceMode.FullStop
>>>print debugger.SoftwareTraceLPD.RecordingMode
FullStop
>>>
|