Status: New
Owner: ----
Labels: Type-Defect Priority-Medium
New issue 37 by
starcraf...@gmail.com: Bug in create_channel_count_edges
http://code.google.com/p/pylibnidaqmx/issues/detail?id=37
What steps will reproduce the problem?
1. from nidaqmx import *
2. t3 = CounterInputTask()
3. t3.create_channel_count_edges("Dev0/ctr1")
The create_channel_count_edges method of CounterInputTask() will not create
a channel as is does not pass the init counts value to the underlying
NI-DAQmx function. In libnidaqmx.py, replace
return CALL ('CreateCICountEdgesChan', self, counter, name,
edge_val, direction_val)==0
with
return CALL ('CreateCICountEdgesChan', self, counter, name,
edge_val, init, direction_val)==0
--
You received this message because this project is configured to send all
issue notifications to this address.
You may adjust your notification preferences at:
https://code.google.com/hosting/settings