嵌入式USB设备驱动源代码和Makefile编译文件源代码
嵌入式linux上的USB设备驱动源代码和Makefile编译驱动文件源代码
嵌入式usb设备驱动源代码和Makefile编译文件
2022-05-27 14:00:58 6KB 源代码
惠普的格式化工具:HPUSBFW 有快速格式化的功能,针对U盘/SD卡/CF卡/移动硬盘等使用usb的磁盘移动存储产品,蛮难得的工具哦。
2022-05-15 21:35:13 96KB 格式化
1
当F105配置时,PA9/OTG_FS_VBUS是用来检测presenseUSB主机的。设计评估显示PA9/OTG_FS_VBUS引脚通过一个零欧姆电阻连接到5VBUS。有这种方法有两个潜在的问题。该第一电势的问题是,PA9/OTG_FS_VBUS输入,虽然它是5V容限,可能损坏(如每ST支持)如果连接到5V时的STM32F105VDD为0V。这可能发生在两个自供电和主机供电的应用。
2022-05-14 18:29:01 123KB STM32USB
1
HID usb设备的单片机固件程序,能自己用单片机控制鼠标。
2022-05-07 17:58:31 101KB USB mouse
1
文件夹中包含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]); } } }
2022-04-16 14:53:32 10KB qt usb hidapi
1
java调用c编写的dll来监听usb设备
2022-04-15 12:51:00 11.85MB java dll 监听usb设备
1
该项目采用wmi技术开发 该项目采用wmi技术开发 该项目采用wmi技术开发 该项目采用wmi技术开发 该项目采用wmi技术开发 该项目采用wmi技术开发 该项目采用wmi技术开发 该项目采用wmi技术开发
2022-04-07 21:55:30 516KB C#、USB
1
相关请看http://blog.csdn.net/cy757/archive/2010/01/01/5117610.aspx 还有驱动和软件米没有长传,因为这个例程是很久以前就改好的,驱动放在哪里忘记了。请参考“电脑圈圈”书中的驱动和上位机软件。 迟些我的博客也会更新USB相关的内容,请留意。。
2022-03-30 09:52:17 752KB STM32 USB
1