Validity: Rule, Task
Energization enabling flags for all power groups.
Syntax |
I32 power_allowed |
---|---|
Notes |
Default value: 0 |
If set to 0 disables energization of power groups, if set to 1 enables it.
Example
; enables groups energization power_allowed = 1 |
Example
; I check if the groups are energized and ; I store the relevant string in sr(1) if(power_allowed) sr(1) = "The groups are energized" else sr(1) = "Groups are not energized" endif |