文件名称:
qt 通过hid获取指定usb设备 并读取数据
开发工具:
文件大小: 10kb
下载次数: 0
上传时间: 2020-04-30
详细说明:文件夹中包含hidapi.h hidapi.dll hidapi.lib,我是在windows10系统中用VS2013编译的release版本,我用于qt的调用,是可以实现的。
调用过程:
int res;
res = hid_init();
wchar_t wstr[MAX_STR];
int i;
// Open the device using the VID, PID,
// and optionally the Serial number.
handle = hid_open(0x0483, 0x5750, NULL);
if(handle == NULL)
{
qDebug() << "NULL-----------------------NULL" ;
return;
}
else
{
qDebug() << " not ------------NULL-----------------------NULL" ;
}
// Read the Manufacturer String
res = hid_get_manufacturer_string(handle, wstr, MAX_STR);
wprintf(L"Manufacturer String: %s\n", wstr);
// Read the Product String
res = hid_get_product_string(handle, wstr, MAX_STR);
wprintf(L"Product String: %s\n", wstr);
// Read the Serial Number String
res = hid_get_serial_number_string(handle, wstr, MAX_STR);
wprintf(L"Serial Number String: (%d) %s\n", wstr[0], wstr);
// Read Indexed String 1
res = hid_get_indexed_string(handle, 1, wstr, MAX_STR);
wprintf(L"Indexed String 1: %s\n", wstr);
qDebug("hid read start");
int res = hid_set_nonblocking(handle, 0);
while (1)
{
res = hid_read(handle,buf,sizeof(buf));
QString asd ;
for(int i = 0;i < sizeof(buf);i++)
{
char str[20];
sprintf(str , "%02x",buf[i]);
asd+=str ;
}
if(!cardInfo.contains(asd.toUpper()))
{
cardInfo.append(asd.toUpper() );
for(int i = 0;i < cardInfo.size() ;i++)
{
dealWithData( cardInfo[i]);
}
}
}
(系统自动生成,下载前可以参看下载内容)
下载文件列表
相关说明
- 本站资源为会员上传分享交流与学习,如有侵犯您的权益,请联系我们删除.
- 本站是交换下载平台,提供交流渠道,下载内容来自于网络,除下载问题外,其它问题请自行百度。
- 本站已设置防盗链,请勿用迅雷、QQ旋风等多线程下载软件下载资源,下载后用WinRAR最新版进行解压.
- 如果您发现内容无法下载,请稍后再次尝试;或者到消费记录里找到下载记录反馈给我们.
- 下载后发现下载的内容跟说明不相乎,请到消费记录里找到下载记录反馈给我们,经确认后退回积分.
- 如下载前有疑问,可以通过点击"提供者"的名字,查看对方的联系方式,联系对方咨询.