Everything

debugger.PseudoError.Get


This function references ECM error information. [RH850][E1/E2/E20/Full-spec emulator/IE850A]

[Specification format]

debugger.PseudoError.Get(nameList = [])

[Argument(s)]

Argument

Description

nameList

Specify the list of error names (abbreviated form) to be acquired.

[Return value]

List of ECM error information (see the PseudoErrorInfo class for detail)

[Detailed description]

-

ECM error information is shown by the following format.

[number] [error-name(abbreviated-form)] [bit-IOR-name] [error-value]

[Example of use]

>>>rl = ["ECC_DED", "ECC_CodeFlash_AddressOverflow"]
>>>ei = debugger.PseudoError.Get(rl)
28 ECC_DED ECMPE028 False
35 ECC_CodeFlash_AddressOverflow ECMPE103 False
>>>print ei[0].Name
ECC_DED
>>>print ei[0].BitName
ECMPE028
>>>