Skip to content

Commit

Permalink
tmp
Browse files Browse the repository at this point in the history
  • Loading branch information
hmaerki committed Jun 30, 2024
1 parent 213fb2c commit 35a4b7d
Showing 1 changed file with 11 additions and 8 deletions.
19 changes: 11 additions & 8 deletions octoprobe/config/config_infrastructure_wetzikon_a.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,23 +7,26 @@
from octoprobe.lib_infrastructure import Infrastructure
from octoprobe.lib_tentacle import Tentacle, UsbHub

hub = UsbHub(
label="Hub A",
hub1 = UsbHub(
label="Hub 1",
model=octohub4,
)
hub2 = UsbHub(
label="Hub ",
model=octohub4,
model=rsh_a10,
)

tentacle_pyboard = Tentacle(
infra_rp2_unique_id="E463541647612835",
tentacle_type=tentacle_type_pyboard,
plug_infra=hub.get_plug(1),
plug_dut=hub.get_plug(2),
plug_infra=hub1.get_plug(1),
plug_dut=hub1.get_plug(2),
)
tentacle_seed_pico = Tentacle(
infra_rp2_unique_id="E463541647173F34",
tentacle_type=tentacle_type_seed_pico,
plug_infra=hub.get_plug(3),
plug_dut=hub.get_plug(4),
plug_infra=hub2.get_plug(1),
plug_dut=hub2.get_plug(2),
)


Expand All @@ -32,5 +35,5 @@
tentacle_seed_pico,
tentacle_pyboard,
],
hubs=[hub],
hubs=[hub2],
)

0 comments on commit 35a4b7d

Please sign in to comment.