diff --git a/configs/config_mb_2023_2_mux_2024.py b/configs/config_mb_2023_2_mux_2024.py index 7146a1b40853097222c503883c08908b31cc8394..3b0e8cad1e2ff6f1f1387b5e20ec4ddaa58ff84e 100644 --- a/configs/config_mb_2023_2_mux_2024.py +++ b/configs/config_mb_2023_2_mux_2024.py @@ -42,7 +42,7 @@ HARDWARE_CONFIG = { 'mcp_0': '0x22', # TODO : Replace this with pos of jumper on MUX board (address doesn't mean anything for the average user... 'mcp_1': '0x23', # TODO : Replace this with pos of jumper on MUX board (address doesn't mean anything for the average user...) 'roles': {'A': 'X', 'B': 'Y', 'M': 'XX', 'N': 'YY'}, - 'cabling': {(i, j): ('mux_1', i) for j in ['A', 'B', 'M', 'N'] for i in range(1, 9)}, + 'cabling': {(i+8, j): ('mux_1', i) for j in ['A', 'B', 'M', 'N'] for i in range(1, 9)}, 'voltage_max': 12.}, 'mux_2': {'model': 'mux_2024_rev_0_0', # 'ohmpi_i2c_mux64_v1.01', @@ -51,7 +51,7 @@ HARDWARE_CONFIG = { 'mcp_0': '0x24', # TODO : Replace this with pos of jumper on MUX board (address doesn't mean anything for the average user... 'mcp_1': '0x25', # TODO : Replace this with pos of jumper on MUX board (address doesn't mean anything for the average user...) 'roles': {'A': 'X', 'B': 'Y', 'M': 'XX', 'N': 'YY'}, - 'cabling': {(i+8, j): ('mux_2', i) for j in ['A', 'B', 'M', 'N'] for i in range(1, 9)}, + 'cabling': {(i+16, j): ('mux_2', i) for j in ['A', 'B', 'M', 'N'] for i in range(1, 9)}, 'voltage_max': 12.} }, 'default': {'voltage_max': 100., diff --git a/dev/test_2_mux_2024.py b/dev/test_2_mux_2024.py index 48e3f2890dc1966a6bdec626a2ec6487e17d7a36..eb7a95fedf700ded8bf8228e50c92c0cf7fb368e 100644 --- a/dev/test_2_mux_2024.py +++ b/dev/test_2_mux_2024.py @@ -45,15 +45,15 @@ if within_ohmpi: print('Starting test of mux within OhmPi.') k = OhmPi() k.reset_mux() - k._hw.switch_mux([1, 4, 2, 3], state='on') + k._hw.switch_mux([9, 12, 10, 11], state='on') k._hw.vab_square_wave(3.,1) - k._hw.switch_mux([1, 4, 2, 3], state='off') + k._hw.switch_mux([9, 12, 10, 11], state='off') k._hw.calibrate_rx_bias() # electrodes 1 4 2 3 should be connected to a reference circuit # print(f'Resistance: {k._hw.last_rho :.2f} ohm, dev. {k._hw.last_dev:.2f} %, rx bias: {k._hw.rx._bias:.2f} mV') # k._hw._plot_readings() - k._hw.switch_mux([1, 4, 2, 3], state='on') + k._hw.switch_mux([9, 12, 10, 11], state='on') k._hw.vab_square_wave(3.,1) - k._hw.switch_mux([1, 4, 2, 3], state='off') + k._hw.switch_mux([9, 12, 10, 11], state='off') print(f'Resistance: {k._hw.last_rho :.2f} ohm, dev. {k._hw.last_dev:.2f} %, rx bias: {k._hw.rx._bias:.2f} mV') k._hw._plot_readings() plot_exec_log('ohmpi/logs/exec.log')