ps6000aEnumerateUnits python example
ps6000aEnumerateUnits python example
count = ctypes.c_int16()
serials = (ctypes.c_int8 * 50)()
serialLth = ctypes.c_int16(50)
ps6.ps6000aEnumerateUnits(ctypes.byref(count), ctypes.byref(serials), ctypes.byref(serialLth))
I have tried a few different possibilities for the "serials" argument, but nothing seems to work.