0

我想关闭nidaqmx-python模块中所有以前创建的任务。

我怎样才能做到这一点?

例如,我有许多以前打开的任务:

for i in range(10):
    nidaqmx.Task()

我没有关闭。但是,我现在想关闭它们。

4

2 回答 2

2

根据消息来源,您必须执行以下操作:

tasks = []
for i in range(10):
    tasks.append(nidaqmx.Task())

# Some code ...

for task in tasks:
    task.close() 

https://github.com/ni/nidaqmx-python/blob/master/nidaqmx/task.py#L448

于 2018-03-07T15:07:34.903 回答
1

您是否尝试过在您正在使用的设备上使用reset_device()?它应该使与设备关联的所有任务能够再次启动。

编辑:虽然它清除了任务,但它只会中止它们。

于 2018-03-08T22:05:30.473 回答