Skip to content
Snippets Groups Projects
Commit 0a66e5ad authored by Lan Dam's avatar Lan Dam
Browse files

Add A,B,C option to check_chan()

parent 7be01667
No related branches found
No related tags found
1 merge request!356Complete check for mass position channels
...@@ -349,7 +349,7 @@ def check_chan(chan_id: str, req_soh_chans: List[str], req_wf_chans: List[str], ...@@ -349,7 +349,7 @@ def check_chan(chan_id: str, req_soh_chans: List[str], req_wf_chans: List[str],
""" """
if chan_id.startswith('VM'): if chan_id.startswith('VM'):
if (not include_mp123zne and if (not include_mp123zne and
chan_id[-1] in ['1', '2', '3', 'Z', 'N', 'E']): chan_id[-1] in ['1', '2', '3', 'Z', 'N', 'E', 'A', 'B', 'C']):
return False return False
if (not include_mp456uvw if (not include_mp456uvw
and chan_id[-1] in ['4', '5', '6', 'U', 'V', 'W']): and chan_id[-1] in ['4', '5', '6', 'U', 'V', 'W']):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment