我想在Python for .NET(pythonnet)的帮助下使用DLL。 此DLL中的方法需要(指向?)变量作为参数。
我可以弄清楚如何调用方法并提供整数变量作为参数。
如果需要特殊类型,我无法弄清楚如何提供这样的参数变量(此处:FTD2XX_NET.FTDI.FT_DEVICE_INFO_NODE [])。
当使用调用FTDI.GetDeviceList
的不同变体(其中一些在技术上相同)时,我会遇到不同类型的错误:
TypeError:没有方法匹配给定的参数
FTDI.GetDeviceList([ftdi.FT_DEVICE_INFO_NODE()][:])
FTDI.GetDeviceList(ftdi.FT_DEVICE_INFO_NODE)
FTDI.GetDeviceList(ftdi.FT_DEVICE_INFO_NODE())
FTDI.GetDeviceList(ftdi.FT_DEVICE_INFO_NODE(device_count))
FTDI.GetDeviceList([devicelist_])
FTDI.GetDeviceList(devicelist_)
TypeError:无法索引的对象
FTDI.GetDeviceList(ftdi.FT_DEVICE_INFO_NODE()[:])
TypeError:预期类型
FTDI.GetDeviceList(ftdi.FT_DEVICE_INFO_NODE[:])
FTDI.GetDeviceList(ftdi.FT_DEVICE_INFO_NODE[1])
FTDI.GetDeviceList(ftdi.FT_DEVICE_INFO_NODE[0])
以下是代码摘要和结果:
import clr
import sys
sys.path.append("C:\\Users\\[...]\\FTD2XX_NET_v1.1.0\\") # path to dll
clr.AddReference("System")
clr.AddReference("FTD2XX_NET")
from FTD2XX_NET import FTDI
from System import UInt32
ftdi = FTDI()
if __name__ == '__main__':
# This method requires an integer as parameter, the code is working
# M:FTD2XX_NET.FTDI.GetLibraryVersion(System.UInt32@)
# summary: Gets the current FTD2XX.DLL driver version number.
# returns: FT_STATUS value from FT_GetLibraryVersion in FTD2XX.DLL
# param: name: LibraryVersion. The current library version.
version_ = 0 # empty variable to provide as parameter
ft_status, version = ftdi.GetLibraryVersion(version_)
print('status: {}\nversion: {}'.format(ft_status, version))
# prints
# status: 0
# version: 197140
# This method requires an FT_DEVICE_INFO_NODE[] as parameter, the code is not working
# M:FTD2XX_NET.FTDI.GetDeviceList(FTD2XX_NET.FTDI.FT_DEVICE_INFO_NODE[])
# summary: Gets information on all of the FTDI devices available.
# returns: FT_STATUS value from FT_GetDeviceInfoDetail in FTD2XX.DLL
# param: name: devicelist.
# An array of type FT_DEVICE_INFO_NODE to contain the device information
# for all available devices.
# no idea how to create the fitting parameter FT_DEVICE_INFO_NODE[]
devicelist_ = ftdi.FT_DEVICE_INFO_NODE() # empty variable to provide as parameter
print(devicelist_.Flags, devicelist_.Type, devicelist_.ID,
devicelist_.LocId, devicelist_.SerialNumber,
devicelist_.Description, devicelist_.ftHandle)
# prints
# 0 0 0 0 None None 0
status, devicelist = FTDI.GetDeviceList(devicelist_)
print(devicelist)
# throws a TypeError: No method matches given arguments
Here我发现了一些c#-code,其中FT_DEVICE_INFO_NODE []和GetDeviceList用在一个方法中:
private int countDevices()
{
FTDI.FT_STATUS ftStatus = FTDI.FT_STATUS.FT_OK;
ftStatus = myDevice.GetNumberOfDevices(ref ftdiDeviceCount);
if (ftStatus != FTDI.FT_STATUS.FT_OK)
return 0;
if (ftdiDeviceCount > 0)
{
//allocate device info list
ftdiDeviceList = new FTDI.FT_DEVICE_INFO_NODE[ftdiDeviceCount];
//populate list
ftStatus = myDevice.GetDeviceList(ftdiDeviceList);
if (ftStatus == FTDI.FT_STATUS.FT_OK)
{
return (int)ftdiDeviceCount;
}
else
return 0;
}
else
return 0;
}
将FTDI.FT_DEVICE_INFO_NODE[]
作为FTDI.GetDeviceList
的参数提供给我的是什么?
来自FTDI的USB驱动程序已在此处下载:http://www.ftdichip.com/Drivers/D2XX.htm,并从此处下载.Net包装器:http://www.ftdichip.com/Support/SoftwareExamples/CodeExamples/CSharp.htm
答案 0 :(得分:1)
我知道这则帖子很旧,但是仍然有用。对我有用的技巧是创建类型为FTD2XX_NET.FT_DEVICE_INFO_NODE []的数组实例,其长度设置为FTDI设备的数量:
# -*- coding: utf-8 -*-
"""
Created on Wed May 13 15:50:22 2020
@author: chogh
"""
# For Windows, from a Anaconda Prompt cmd window:
# conda install -c ipython pythonnet # so import System classes are exposed
# conda install -c ipython ftd2xx # so import FTD2XX_NET classes are exposed
#
#############################################################################
import System # available after running conda install -c ipython pythonnet in Anaconda Prompt cmd window
import clr
from System import Array # to import .Net Array functions for FTD2XX_NET
from System import Byte # to import .Net Array functions for FTD2XX_NET
from array import array
clr.AddReference("System")
clr.AddReference('FTD2XX_NET')
from FTD2XX_NET import FTDI
myFtdiDevice=FTDI()
ft_status = myFtdiDevice.FT_STATUS.FT_DEVICE_NOT_FOUND
DeviceNum=0
ft_status,DeviceNum=myFtdiDevice.GetNumberOfDevices(DeviceNum)
DeviceList=Array.CreateInstance(myFtdiDevice.FT_DEVICE_INFO_NODE, DeviceNum)
ft_status=myFtdiDevice.GetDeviceList(DeviceList)
print("ft_status:", ft_status)
print("Device Description: ",DeviceList[0].Description)
print("Device Serial Number: ",DeviceList[0].SerialNumber)
print("Device Device ID: ",DeviceList[0].ID)
print("Device Device Type: ",DeviceList[0].Type)
这将产生以下输出:
Reloaded modules: System, FTD2XX_NET
ft_status: 0
Device Description: Hazelnut
Device Serial Number: FTWLN0XM
Device Device ID: 67330068
Device Device Type: 8
答案 1 :(得分:0)
源代码需要包含FT_DEVICE_INFO_NODE的列表。这是函数声明:
public FTDI.FT_STATUS GetDeviceList(FTDI.FT_DEVICE_INFO_NODE[] devicelist)
此代码对我有用:
ft_device_info_node = ftdi.FT_DEVICE_INFO_NODE()
ft_status = ftdi.GetDeviceList([ft_device_info_node])
print(ft_status)
最后,我放弃了此功能,因为无法让它返回我想要的东西,而是在打开我想要的设备后分别使用了“ GetDeviceID”,“ GetDescription”和“ GetSerialNumber”功能从中获取信息。
示例:
# Open
ftdi.OpenByIndex(0)
print("Opened Index 0")
# Get Device ID
device_id = 0
ft_status, device_id = ftdi.GetDeviceID(device_id)
assert(ft_status == 0)
print(device_id)
# Close
ftdi.Close()
print("Closed")