Status and autorange implemented for AC resistane bridge

Change-Id: I8c94660c3b76cc78886e9e074b4ce8114fbb7f9e
This commit is contained in:
Oksana Shliakhtun
2024-06-04 16:46:52 +02:00
committed by Markus Zolliker
parent 7c96b83aff
commit d38b672a9a
2 changed files with 226 additions and 56 deletions

View File

@ -6,28 +6,62 @@ Node('bridge.psi.ch',
Mod('io',
'frappy_psi.bridge.BridgeIO',
'communication to sim900',
uri='serial:///dev/cu.usbserial-14440',
uri='serial:///dev/cu.usbserial-14240',
)
Mod('Resistance_1',
'frappy_psi.bridge.SIM921',
Mod('res1',
'frappy_psi.bridge.Resistance',
'module communication',
io='io',
port=1,
# channel='A'
)
Mod('Resistance_2',
'frappy_psi.bridge.SIM921',
Mod('res2',
'frappy_psi.bridge.Resistance',
'module communication',
io='io',
port=3,
)
Mod('Resistance_3',
'frappy_psi.bridge.SIM921',
Mod('res3',
'frappy_psi.bridge.Resistance',
'module communication',
io='io',
port=5,
)
Mod('phase1',
'frappy_psi.bridge.Phase',
'module communication',
resistance='res1',
)
Mod('phase2',
'frappy_psi.bridge.Phase',
'module communication',
resistance='res2',
)
Mod('phase3',
'frappy_psi.bridge.Phase',
'module communication',
resistance='res3',
)
Mod('dev1',
'frappy_psi.bridge.Deviation',
'module communication',
resistance='res1',
)
Mod('dev2',
'frappy_psi.bridge.Deviation',
'module communication',
resistance='res1',
)
Mod('dev3',
'frappy_psi.bridge.Deviation',
'module communication',
resistance='res3',
)