national-instruments-helper

This commit is contained in:
2025-08-18 12:52:48 -07:00
parent 9b61eceb80
commit 5603d01412
35 changed files with 1119 additions and 25 deletions

View File

@ -0,0 +1,10 @@
namespace Helpers.DAQmx;
public enum DAQmxInputTerminalConfiguration
{
Default = -1, // 0xFFFFFFFF
NonReferencedSingleEnded = 10078, // 0x0000275E
ReferencedSingleEnded = 10083, // 0x00002763
Differential = 10106, // 0x0000277A
Pseudodifferential = 12529, // 0x000030F1
}