Commit cea7ea03 authored by Arnaud WATLET's avatar Arnaud WATLET
Browse files

tests new cabling config

Showing with 2 additions and 1 deletion
+2 -1
...@@ -134,8 +134,9 @@ def mux_2024_to_mux_2023_takeouts(mux_boards): ...@@ -134,8 +134,9 @@ def mux_2024_to_mux_2023_takeouts(mux_boards):
12: 6, 13: 10, 14: 7, 15: 9, 16: 8} 12: 6, 13: 10, 14: 7, 15: 9, 16: 8}
for mux in mux_boards: for mux in mux_boards:
new_cabling = mux.cabling.copy()
print(mux) print(mux)
new_cabling = mux.cabling.copy()
for k, v in mux.cabling.items(): for k, v in mux.cabling.items():
print(k, v) print(k, v)
new_cabling[k] = (mapper[v[0]], v[1]) new_cabling[k] = (mapper[v[0]], v[1])
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment