diff --git a/bffh.dhall b/bffh.dhall index f96cbc9..dce6595 100644 --- a/bffh.dhall +++ b/bffh.dhall @@ -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