Everything

debugger.ActionEvent.Information


This function displays action event information.

[Specification format]

debugger.ActionEvent.Information()

[Argument(s)]

None

[Return value]

List of action event information (see the ActionEventInfo class for detail)

[Detailed description]

-

This function displays information on the action event that has been set in the following format.

-

For the Printf event

action-event-number action-event-name state address string-to-be-attached-at-output variable-expression

-

For the interrupt event

action-event-number action-event-name state address Interrupt vector: interrupt-vector-number Priority level: interrupt-priority

[Example of use]

>>>ai = debugger.ActionEvent.Information()
1 Python Action Event0001 Enable main results: chData
2 Python Action Event0002 Disable sub Interrupt vector: 0x1c Priority level: 7
>>>print ai[0].Number
1
>>>print ai[0].Name
Python Action Event0001
>>>