Communication with the modules for the ac resistance bridge.

Change-Id: I1c144bf0bfc7c8c3090aa7cf3f32f1d4d046dca7
This commit is contained in:
Oksana Shliakhtun
2024-05-21 17:30:11 +02:00
committed by Markus Zolliker
parent 3ee6e32a46
commit 7c96b83aff
2 changed files with 71 additions and 77 deletions

View File

@ -1,32 +1,33 @@
Node('bridge.psi.ch',
'ac resistance bridge',
'tcp://5000'
'tcp://5000',
)
Mod('io',
'frappy_psi.bridge.BridgeIO',
'communication to sim900',
uri='serial:///dev/cu.usbserial-21440'
uri='serial:///dev/cu.usbserial-14440',
)
# Mod('SIM921_A',
# 'frappy_psi.bridge.SIM921',
# 'module communication',
# io='io',
# channel='A'
# )
Mod('Resistance_1',
'frappy_psi.bridge.SIM921',
'module communication',
io='io',
port=1,
# channel='A'
)
# Mod('SIM921_B',
# 'frappy_psi.bridge.SIM921',
# 'module communication',
# io='io',
# channel='B'
# )
#
# Mod('SIM921_C',
# 'frappy_psi.bridge.SIM921',
# 'module communication',
# io='io',
# channel='C'
# )
Mod('Resistance_2',
'frappy_psi.bridge.SIM921',
'module communication',
io='io',
port=3,
)
Mod('Resistance_3',
'frappy_psi.bridge.SIM921',
'module communication',
io='io',
port=5,
)