Added: Fabpel

This commit is contained in:
TheJoKlLa 2023-02-27 13:20:35 +01:00
parent 8bbc2fd092
commit 3682b8b484

View File

@ -424,11 +424,26 @@
cmd = "python",
args = "tfom23-demo/actors/fabreader/main.py --host localhost --fabreader 00004"
}},
fabpel_0 = { module = "Process", params =
{
cmd = "python",
args = "tfom23-demo/actors/fabpel/main.py --host localhost --fabpel 00000"
}},
fabpel_1 = { module = "Process", params =
{
cmd = "python",
args = "tfom23-demo/actors/fabpel/main.py --host localhost --fabpel 00001"
}},
fabpel_2 = { module = "Process", params =
{
cmd = "python",
args = "tfom23-demo/actors/fabpel/main.py --host localhost --fabpel 00002"
}},
fabpel_3 = { module = "Process", params =
{
cmd = "python",
args = "tfom23-demo/actors/fabpel/main.py --host localhost --fabpel 00003"
}},
},
-- Linkng up machines to actors
@ -459,7 +474,10 @@
{ machine = "Lasercutter_0", actor = "fabreader_3" },
{ machine = "CNC_0", actor = "fabreader_4" },
{ machine = "Printer_0", actor = "fabpel_1" },
{ machine = "Printer_0", actor = "fabpel_0" },
{ machine = "Printer_1", actor = "fabpel_1" },
{ machine = "Lasercutter_0", actor = "fabpel_2" },
{ machine = "CNC_0", actor = "fabpel_3" },
],
-- Initiators are configured almost the same way as Actors, refer to actor documentation for more details