debugger.ProcessorElementName
|
This property sets or refers to the PE of multiple cores with the name.
[Specification format]
debugger.ProcessorElementName = name
|
[Setting(s)]
|
|
name
|
Set the PE name as a string.
|
[Reference]
Current set value
[Detailed description]
- | This property sets or refers to the PE of the multi-core. |
- | The specifiable strings can be obtained by calling debugger.GetProcessorElementNames. |
Caution | When the PE is set, it must be connected to the debugging tool. |
[Example of use]
>>>print debugger.ProcessorElementName
CPU1
>>>debugger.ProcessorElementName = 'CPU2'
>>>print debugger.ProcessorElementName
CPU2
>>>
|