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

Fixes issue in cabling for config 8_mux_2023

Showing with 4 additions and 4 deletions
+4 -4
...@@ -61,25 +61,25 @@ HARDWARE_CONFIG = { ...@@ -61,25 +61,25 @@ HARDWARE_CONFIG = {
{'model': 'mux_2023_0_X', {'model': 'mux_2023_0_X',
'mux_tca_address': 0x74, 'mux_tca_address': 0x74,
'roles': {'A': 'X'}, 'roles': {'A': 'X'},
'cabling': {(i, j): ('mux_A2', i) for j in ['A'] for i in range(65, 129)}, 'cabling': {(i+64, j): ('mux_A2', i) for j in ['A'] for i in range(1, 65)},
'voltage_max': 12.}, 'voltage_max': 12.},
'mux_B2': 'mux_B2':
{'model': 'mux_2023_0_X', {'model': 'mux_2023_0_X',
'mux_tca_address': 0x75, 'mux_tca_address': 0x75,
'roles': {'B': 'X'}, 'roles': {'B': 'X'},
'cabling': {(i, j): ('mux_B2', i) for j in ['B'] for i in range(65, 129)}, 'cabling': {(i+64, j): ('mux_B2', i) for j in ['B'] for i in range(1, 65)},
'voltage_max': 12.}, 'voltage_max': 12.},
'mux_M2': 'mux_M2':
{'model': 'mux_2023_0_X', {'model': 'mux_2023_0_X',
'mux_tca_address': 0x76, 'mux_tca_address': 0x76,
'roles': {'M': 'X'}, 'roles': {'M': 'X'},
'cabling': {(i, j): ('mux_M2', i) for j in ['M'] for i in range(65, 129)}, 'cabling': {(i+64, j): ('mux_M2', i) for j in ['M'] for i in range(1, 65)},
'voltage_max': 12.}, 'voltage_max': 12.},
'mux_N2': 'mux_N2':
{'model': 'mux_2023_0_X', {'model': 'mux_2023_0_X',
'mux_tca_address': 0x77, 'mux_tca_address': 0x77,
'roles': {'N': 'X'}, 'roles': {'N': 'X'},
'cabling': {(i, j): ('mux_N2', i) for j in ['N'] for i in range(65, 129)}, 'cabling': {(i+64, j): ('mux_N2', i) for j in ['N'] for i in range(1, 65)},
'voltage_max': 12.}, 'voltage_max': 12.},
}, },
'default': {'interface_name': 'i2c_ext', 'default': {'interface_name': 'i2c_ext',
......
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