Added: Fabpel

This commit is contained in:
TheJoKlLa 2023-02-24 20:13:28 +01:00
parent adcffdfa04
commit 8bbc2fd092
3 changed files with 11 additions and 0 deletions

3
.gitmodules vendored
View File

@ -4,3 +4,6 @@
[submodule "actors/fablock"] [submodule "actors/fablock"]
path = actors/fablock path = actors/fablock
url = https://gitlab.com/fabinfra/fabaccess/actors/fablock.git url = https://gitlab.com/fabinfra/fabaccess/actors/fablock.git
[submodule "actors/fabpel"]
path = actors/fabpel
url = https://gitlab.com/fabinfra/fabaccess/actors/fabpel.git

1
actors/fabpel Submodule

@ -0,0 +1 @@
Subproject commit 3d42b850735369130acdc789280b8be7cdec86d1

View File

@ -424,6 +424,11 @@
cmd = "python", cmd = "python",
args = "tfom23-demo/actors/fabreader/main.py --host localhost --fabreader 00004" args = "tfom23-demo/actors/fabreader/main.py --host localhost --fabreader 00004"
}}, }},
fabpel_1 = { module = "Process", params =
{
cmd = "python",
args = "tfom23-demo/actors/fabpel/main.py --host localhost --fabpel 00001"
}},
}, },
-- Linkng up machines to actors -- Linkng up machines to actors
@ -453,6 +458,8 @@
{ machine = "Printer_1", actor = "fabreader_2" }, { machine = "Printer_1", actor = "fabreader_2" },
{ machine = "Lasercutter_0", actor = "fabreader_3" }, { machine = "Lasercutter_0", actor = "fabreader_3" },
{ machine = "CNC_0", actor = "fabreader_4" }, { machine = "CNC_0", actor = "fabreader_4" },
{ machine = "Printer_0", actor = "fabpel_1" },
], ],
-- Initiators are configured almost the same way as Actors, refer to actor documentation for more details -- Initiators are configured almost the same way as Actors, refer to actor documentation for more details