debugger.SoftwareTraceLPD.Set
|
This function sets a software trace (LPD output). [RH850][E2]
[Specification format]
debugger.SoftwareTraceLPD.Set(DBCP, DBTAG, DBPUSH, PC = True, PE)
|
[Argument(s)]
|
|
DBCP
|
Specify whether to acquire the results of DBCP.
True: Acquire the results of DBCP.
False: Do not acquire the results of DBCP.
|
DBTAG
|
Specify whether to acquire the results of DBTAG.
True: Acquire the results of DBTAG.
False: Do not acquire the results of DBTAG.
|
DBPUSH
|
Specify whether to acquire the results of DBPUSH.
True: Acquire the results of DBPUSH.
False: Do not acquire the results of DBPUSH.
|
PC
|
Specify whether to include information of the PC address in the results of DBTAG and DBPUSH.
True: Include information of the PC address (default).
False: Do not include information of the PC address.
|
PE
|
If the device is multi-core, specify the number of the core from which you wish to acquire trace information.
Specification of this argument is ignored if the device in use only has one core.
|
[Return value]
If a software trace (LPD output) was set successfully: True
If there was an error when setting a software trace (LPD output): False
[Detailed description]
- | This function sets a software trace (LPD output). |
[Example of use]
>>>debugger.SoftwareTraceLPD.Set(True,True,False,False,1)
True
>>>
|