summaryrefslogtreecommitdiff
path: root/main.lua
diff options
context:
space:
mode:
authorolive <olive@olive.ooo>2026-09-12 18:22:22 +0100
committerolive <olive@olive.ooo>2026-09-12 18:22:22 +0100
commitfa9da79c39f62439ece735ed0e7dfe4c4c9692b2 (patch)
treef62ef38df78d92a295f61e21beff6d53814fe2b4 /main.lua
parent3687e97db6c035d0cc7065f5d22d801e6553bb2a (diff)
add add_channel
Diffstat (limited to 'main.lua')
-rw-r--r--main.lua5
1 files changed, 5 insertions, 0 deletions
diff --git a/main.lua b/main.lua
index c62275d..3f93cd9 100644
--- a/main.lua
+++ b/main.lua
@@ -59,6 +59,11 @@ function Wilson.run(self)
self.cq:wrap(pylon.run, pylon)
print("now running pylon", pylonname)
end
+ for busname, bus in pairs(self.busses) do
+ for _, channel in ipairs(bus) do
+ channel.pylon:add_channel(channel)
+ end
+ end
print('toplevel',self.cq:loop())
end