![]() |
Event Recorder
Version 1.0.0
MDK Debugger Views for Status and Event Information
|
Walk through <readlist> arrays.
Example:
Parent Element | Element Chain | ||
---|---|---|---|
out | /component_viewer/objects/object/out | ||
item | /component_viewer/objects/object/out/.../item | ||
list | /component_viewer/objects/object/out/.../list | ||
Attributes | Description | Type | Use |
name | Name of the list. Can be used in Expressions. Must be of type int. | xs:string | required |
start | Starting value. | xs:string | required |
limit | The end value is limit-1. If limit=<0, then the list is skipped. Cannot be used with while in the same <list> element. | xs:string | optional |
while | Specifies the next value for iterations. When using while, iteration does not start if start==0. Cannot be used with limit in the same <list> element. | xs:string | optional |
cond | Conditional execution: element is executed when expression result is not 0. Default value is 1. | xs:string | optional |
skip | ...... | xs:string | optional |
Child Element | Description | Type | Occurrence |
item | Output a line. | ItemType | 0..* |
output | Call an out block. | OutputType | 0..* |
list | Read complex variables, arrays, or linked lists. Walk through readlist arrays. | ListType | 0..* |