MCPcopy Create free account
hub / github.com/LabPy/lantz / _task_names

Method _task_names

lantz/drivers/legacy/ni/daqmx/base.py:167–172  ·  view source on GitHub ↗

Return a tuple containing the names of all global tasks saved in the system.

(self)

Source from the content-addressed store, hash-verified

165 return names
166
167 def _task_names(self):
168 """Return a tuple containing the names of all global tasks saved in the system.
169 """
170 err, buf = self.lib.GetSysTasks(*RetStr(default_buf_size))
171 names = tuple(n.strip() for n in buf.split(',') if n.strip())
172 return names
173
174 def _channel_names(self):
175 """Return a tuple containing the names of all global channels saved in the system.

Callers

nothing calls this directly

Calls 1

RetStrClass · 0.90

Tested by

no test coverage detected