- FactoryTalk Design Studio Help
- Programs, tasks, and routines
- Add-On Instructions
- FactoryTalk Design Studio Code editor
- Instructions
- Instruction set
Task example
This example shows tasks in the
FactoryTalk Design Studio
DSL.task continuous mainTask { // listed order is scheduling order SubProgram; OtherSubProgram; Area1.tank101.tankProgram; // SO’s program reference } parameterConnection subProgram.p1 otherSubProgram.p2; task periodic mainTask { period := 10.00; priority := 10; watchdog := 500.00; // listed order is scheduling order SubProgram; OtherSubProgram; }
This example shows a continuous task.
task CONTINUOUS Task3 { desc := ""; watchdog := 500.0; inhibited := false; disableAutomaticOutput := false; }
This example shows a periodic task.
task PERIODIC DefaultTask { desc := ""; period := 250.0; priority := 10; watchdog := 500.0; inhibited := false; disableAutomaticOutput := false; }
Provide Feedback