debugger.SoftwareTraceLPD.Priority
|
This property sets or refers to the priority for the acquisition of software trace (LPD output) data. [RH850][E2]
[Specification format]
debugger.SoftwareTraceLPD.Priority = tracePriority
|
[Setting(s)]
|
|
tracePriority
|
Set the priority for the acquisition of software trace (LPD output) data.
The values that can be specified are shown below.
|
|
|
TracePriority.SpeedPriority
|
Real-time operation is given priority in tracing.
|
TracePriority.DataPriority
|
The CPU pipeline is temporarily stopped so that no trace data is lost.
|
[Reference]
The current priority setting for the acquisition of software trace (LPD output) data
[Detailed description]
- | This property sets or refers to the current priority setting for the acquisition of software trace (LPD output) data. |
[Example of use]
>>>print debugger.SoftwareTraceLPD.Priority
SpeedPriority
>>>debugger.SoftwareTraceLPD.Priority = TracePriority.DataPriority
>>>print debugger.SoftwareTraceLPD.Priority
DataPriority
>>>
|