Skip to content

Commit 088c100

Browse files
committed
HW_NI_AnalogInputToString: Use correct string representations
We need to use the names accepted by the NIDAQ MX operations and functions. See for example the help for DAQmx_AI_SetupReader.
1 parent bf84643 commit 088c100

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Packages/MIES/MIES_DAC-Hardware.ipf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2238,11 +2238,11 @@ Function/S HW_NI_AnalogInputToString(variable config)
22382238
endif
22392239

22402240
if(config & HW_NI_CONFIG_DIFFERENTIAL)
2241-
str += "Differential, "
2241+
str += "Diff, "
22422242
endif
22432243

22442244
if(config & HW_NI_CONFIG_PSEUDO_DIFFERENTIAL)
2245-
str += "Pseudo Differential, "
2245+
str += "PDIFF, "
22462246
endif
22472247

22482248
ASSERT(!IsEmpty(str), "Invalid config")

0 commit comments

Comments
 (0)