diff --git a/.gitmodules b/.gitmodules index 5717143..e685a8d 100644 --- a/.gitmodules +++ b/.gitmodules @@ -4,3 +4,6 @@ [submodule "actors/fablock"] path = actors/fablock url = https://gitlab.com/fabinfra/fabaccess/actors/fablock.git +[submodule "actors/fabpel"] + path = actors/fabpel + url = https://gitlab.com/fabinfra/fabaccess/actors/fabpel.git diff --git a/actors/fabpel b/actors/fabpel new file mode 160000 index 0000000..3d42b85 --- /dev/null +++ b/actors/fabpel @@ -0,0 +1 @@ +Subproject commit 3d42b850735369130acdc789280b8be7cdec86d1 diff --git a/bffh.dhall b/bffh.dhall index 60ed9c3..f96cbc9 100644 --- a/bffh.dhall +++ b/bffh.dhall @@ -424,6 +424,11 @@ cmd = "python", 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 @@ -453,6 +458,8 @@ { machine = "Printer_1", actor = "fabreader_2" }, { machine = "Lasercutter_0", actor = "fabreader_3" }, { 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