nidaqmx-python
nidaqmx-python copied to clipboard
A Python API for interacting with NI-DAQmx
The `nidaqmx.Timing.first_samp_timestamp_val` property does not work because `LibraryInterpreter` is missing the `get_timing_attribute_timestamp` method. ``` >>> t = nidaqmx.Task() >>> t.timing.first_samp_timestamp_val Traceback (most recent call last): File "", line 1, in...
This issue lists Renovate updates and detected dependencies. Read the [Dependency Dashboard](https://docs.renovatebot.com/key-concepts/dashboard/) docs to learn more.[View this repository on the Mend.io Web Portal](https://developer.mend.io/github/ni/nidaqmx-python). ## Awaiting Schedule The following updates are...
## Bug Report: Occasional -50405 Error with USB-6009 During Continuous Acquisition ### Description I am experiencing the occasional `-50405` error ("No transfer is in progress or transfer was aborted") when...
## Tech Debt Instead of listing each individual test configuration in the required checks, we should list the "Test Results" check. However, this doesn't work for PRs from forks of...
## Tech Debt The unit tests are passing with Python 3.14t on a GitHub-hosted runner, but adding a `py314t-base` Tox env to the system tests produces NumPy import errors: ```...
## Tech Debt `-k "not grpc"` filters out tests that contain grpc in their name or use the grpc_init_kwargs fixture, but unfortunately it also seems to filter out tests that...
Profile results for read_waveform indicate that constructing hightime objects is a bottleneck. These profile results include the proposed fix for #843. ``` ncalls tottime percall cumtime percall filename:lineno(function) 73707 0.080...
# Bug Report These tests (tests/component/task/test_out_stream_write_properties.py) use a simulated PXIe-4322 ("aoTester") to validate basic functionality of runtime-checked attributes. * `test___ao_current_task___get_bool_property___returns_default_value` * `test___ao_current_task___get_string_list_property___returns_default_value` We assume it will always return false (and...
## Problem to Solve Raw read methods like `InStream.read` and `InStream.read_into` do a lot of work to calculate the raw sample size, but this code is incomplete and does not...