File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -378,13 +378,14 @@ def get_segment_tuple(info):
378378
379379
380380 for info in info_list :
381- # we have two main device types ` imec` and ` nidq` that the user has control of enabling
381+ # device_kind is imec, nidq
382382 if info .get ("device_kind" ) == "imec" :
383383 info ["device_index" ] = info ["device" ].split ("imec" )[- 1 ]
384384 else :
385385 info ["device_index" ] = "" # TODO: Handle multi nidq case, maybe use meta["typeNiEnabled"]
386386
387- # Define stream base on device [imec|nidq], device_index and stream_kind [ap|lf] for imec
387+ # Define stream base on device_kind [imec|nidq], device_index and stream_kind [ap|lf] for imec
388+ # Stream format is "{device_kind}{device_index}.{stream_kind}"
388389 for info in info_list :
389390 device_kind = info ["device_kind" ]
390391 device_index = info ["device_index" ]
You can’t perform that action at this time.
0 commit comments