78 Linux libusb库USB HID应用编程笔记

2024-08-26 23:04

本文主要是介绍78 Linux libusb库USB HID应用编程笔记,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

1 前言

        这几天搞另外一个项目,基于Ubuntu开发一个小的应用程序,就是通过USB HID与设备通信。因此需要在Linux环境编写对应USB HID通信应用。

        目前libusb库已经很好的支持USB相关应用的开发,库中提供了丰富的USB接口,用户可以直接调用其提供的API,实现快速开发。

        本文对USB HID应用开发进行了简要记录,方便日后自己查看复习。

2 libusb库准备

(1)获取libusb库源码

下面链接是libusb库的源码下载地址。

libusb库源码:https://github.com/libusb/libusb/releases

(2)编译libusb库

获取到源码之后,需要对库进行编译,下面记录了自己编译的指令。

cd libusb-1.0.26/
#配置
./configure --prefix=/home/libusbinstall --build=x86_64-linux --disable-udev
#编译
make
#安装
make install

(3)安装目录

安装之后可以看到目标目录存在两个文件夹:include/ 和 lib/

3 应用示例

下面直接上代码,无需多言,看代码即可(代码风格及规范进行了简化,实际上没那么丑的)。

头文件:hidusb.h

#include <stdint.h>#include "libusb.h"int hidUSB_write(libusb_device_handle *dev_handle, unsigned char endpoint, unsigned char *pDataIn, int nDataLen, int ntimeout);
int hidUSB_read(libusb_device_handle *dev_handle,unsigned char endpoint, unsigned char *pDataRcv, int nDataLen, int ntimeout);
int hidUSB_open(libusb_device_handle **dev_hdlout, uint16_t vendor_id, uint16_t product_id);
int hidUSB_close(libusb_device_handle *dev_handle);void hidUSB_DeInit(void);
int hidUSB_Init(void);

源文件:hidusb.c

#include <stdio.h>
#include <stdint.h>
#include <string.h>#include "hidusb.h"static libusb_context 			*gUSBCtx = NULL;int hidUSB_write(libusb_device_handle *dev_handle, unsigned char endpoint, unsigned char *pDataIn, int nDataLen, int ntimeout)
{int ret = -1;int transferred = 0;ret = libusb_interrupt_transfer(dev_handle, endpoint, pDataIn, nDataLen, &transferred, ntimeout);if(ret<0){perror("failed to write\n");return 0;}return transferred;}int hidUSB_read(libusb_device_handle *dev_handle,unsigned char endpoint, unsigned char *pDataRcv, int nDataLen, int ntimeout)
{int ret = -1;int transferred = 0;ret = libusb_interrupt_transfer(dev_handle,endpoint, pDataRcv, 64, &transferred, ntimeout);if(ret!=0){perror("failed to read\n");return 0;}return transferred;}int hidUSB_open(libusb_device_handle **dev_hdlout, uint16_t vendor_id, uint16_t product_id)
{int ret = -1;libusb_device_handle *tdev_handle = NULL;//打开指定pid和vid的设备tdev_handle = libusb_open_device_with_vid_pid(NULL, vendor_id, product_id);if(tdev_handle == NULL){perror("Cannot open device\n");return -1;}//内核驱动激活与分离(这一句我没怎么搞懂为啥需要,懂的朋友欢迎留言告诉我)if(libusb_kernel_driver_active(tdev_handle, 0) == 1){ printf("Kernel Driver Active\n");if(libusb_detach_kernel_driver(tdev_handle, 0) == 0){printf("Kernel Driver Detached!\n");}}ret = libusb_claim_interface(tdev_handle, 0);if(ret < 0) {perror("Cannot Claim Interface\n");goto iExit;}*dev_hdlout = tdev_handle;return 0;iExit:	if(tdev_handle)libusb_close(tdev_handle);return -1;
}int hidUSB_close(libusb_device_handle *dev_handle)
{int ret = -1;if(dev_handle){ret = libusb_release_interface(dev_handle, 0);if(ret!=0){	perror("Cannot libusb_release_interface\n");return -1;}libusb_close(dev_handle);}return 0;
}void hidUSB_DeInit(void)
{libusb_exit(gUSBCtx);
}int hidUSB_Init(void)
{int ret = -1;ret = libusb_init(&gUSBCtx); if(ret < 0) {perror("libusb_init failed\n");return -1;	} return 0;
}

主程序:main.c

#include <stdio.h>
#include <unistd.h>
#include "hidusb.h"//设备的标识号
#define HT232_USB_VID 			0x5548
#define HT232_USB_PID 			0x6666//这个需要看设备所使用的ep
#define HT232_USB_HID_EPOUT		0x01
#define HT232_USB_HID_EPIN		0x81int main(void)
{int ni = 0;int nRet = -1;uint8_t ucSndBuf[256] = {0};uint8_t ucRcvBuf[256] = {0};uint8_t ucSndLen = 0;uint8_t ucRcvLen = 0;libusb_device_handle *dev_handle = NULL;nRet =  hidUSB_Init();if(nRet != 0){perror("hidUSB_Init failed\r\n");return -1;}nRet = hidUSB_open(&dev_handle, HT232_USB_VID, HT232_USB_PID);if(nRet != 0){perror("hidUSB_open failed\r\n");return -1;}while(1){ucSndBuf[0] = 0x01;ucSndBuf[1] = 0x02;ucSndBuf[2] = 0x03;ucSndBuf[3] = 0x04;ucSndLen = 4;nRet =  hidUSB_write(dev_handle, HT232_USB_HID_EPOUT, ucSndBuf, ucSndLen, 1000);if(nRet == 0){perror("hidUSB_write failed\r\n");goto iSleep;}ucRcvLen =  hidUSB_read(dev_handle, HT232_USB_HID_EPIN, ucRcvBuf, sizeof(ucRcvBuf), 1000);if(ucRcvLen == 0){perror("hidUSB_read failed\r\n");goto iSleep;}for(ni=0; ni<ucRcvLen; ni++){printf("%02X ", ucRcvBuf[ni]);}printf("\r\n");
iSleep:sleep(1);}nRet = hidUSB_close(dev_handle);if(nRet != 0){perror("hidUSB_open failed\r\n");}hidUSB_DeInit();return 0;
}

上述即为Linux环境下USB HID应用编程demo。

4 结束语

知识分享,共同进步。

over!

--------------------------------------------------------------------------------------------------------------

卖个广告:ble、4G、lora、wifi等门禁设备,各种读卡器模块、成品都有,若有需要,可私信。

这篇关于78 Linux libusb库USB HID应用编程笔记的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/1109937

相关文章

中文分词jieba库的使用与实景应用(一)

知识星球:https://articles.zsxq.com/id_fxvgc803qmr2.html 目录 一.定义: 精确模式(默认模式): 全模式: 搜索引擎模式: paddle 模式(基于深度学习的分词模式): 二 自定义词典 三.文本解析   调整词出现的频率 四. 关键词提取 A. 基于TF-IDF算法的关键词提取 B. 基于TextRank算法的关键词提取

水位雨量在线监测系统概述及应用介绍

在当今社会,随着科技的飞速发展,各种智能监测系统已成为保障公共安全、促进资源管理和环境保护的重要工具。其中,水位雨量在线监测系统作为自然灾害预警、水资源管理及水利工程运行的关键技术,其重要性不言而喻。 一、水位雨量在线监测系统的基本原理 水位雨量在线监测系统主要由数据采集单元、数据传输网络、数据处理中心及用户终端四大部分构成,形成了一个完整的闭环系统。 数据采集单元:这是系统的“眼睛”,

linux-基础知识3

打包和压缩 zip 安装zip软件包 yum -y install zip unzip 压缩打包命令: zip -q -r -d -u 压缩包文件名 目录和文件名列表 -q:不显示命令执行过程-r:递归处理,打包各级子目录和文件-u:把文件增加/替换到压缩包中-d:从压缩包中删除指定的文件 解压:unzip 压缩包名 打包文件 把压缩包从服务器下载到本地 把压缩包上传到服务器(zip

csu 1446 Problem J Modified LCS (扩展欧几里得算法的简单应用)

这是一道扩展欧几里得算法的简单应用题,这题是在湖南多校训练赛中队友ac的一道题,在比赛之后请教了队友,然后自己把它a掉 这也是自己独自做扩展欧几里得算法的题目 题意:把题意转变下就变成了:求d1*x - d2*y = f2 - f1的解,很明显用exgcd来解 下面介绍一下exgcd的一些知识点:求ax + by = c的解 一、首先求ax + by = gcd(a,b)的解 这个

hdu1394(线段树点更新的应用)

题意:求一个序列经过一定的操作得到的序列的最小逆序数 这题会用到逆序数的一个性质,在0到n-1这些数字组成的乱序排列,将第一个数字A移到最后一位,得到的逆序数为res-a+(n-a-1) 知道上面的知识点后,可以用暴力来解 代码如下: #include<iostream>#include<algorithm>#include<cstring>#include<stack>#in

zoj3820(树的直径的应用)

题意:在一颗树上找两个点,使得所有点到选择与其更近的一个点的距离的最大值最小。 思路:如果是选择一个点的话,那么点就是直径的中点。现在考虑两个点的情况,先求树的直径,再把直径最中间的边去掉,再求剩下的两个子树中直径的中点。 代码如下: #include <stdio.h>#include <string.h>#include <algorithm>#include <map>#

Linux 网络编程 --- 应用层

一、自定义协议和序列化反序列化 代码: 序列化反序列化实现网络版本计算器 二、HTTP协议 1、谈两个简单的预备知识 https://www.baidu.com/ --- 域名 --- 域名解析 --- IP地址 http的端口号为80端口,https的端口号为443 url为统一资源定位符。CSDNhttps://mp.csdn.net/mp_blog/creation/editor

【Python编程】Linux创建虚拟环境并配置与notebook相连接

1.创建 使用 venv 创建虚拟环境。例如,在当前目录下创建一个名为 myenv 的虚拟环境: python3 -m venv myenv 2.激活 激活虚拟环境使其成为当前终端会话的活动环境。运行: source myenv/bin/activate 3.与notebook连接 在虚拟环境中,使用 pip 安装 Jupyter 和 ipykernel: pip instal

【区块链 + 人才服务】可信教育区块链治理系统 | FISCO BCOS应用案例

伴随着区块链技术的不断完善,其在教育信息化中的应用也在持续发展。利用区块链数据共识、不可篡改的特性, 将与教育相关的数据要素在区块链上进行存证确权,在确保数据可信的前提下,促进教育的公平、透明、开放,为教育教学质量提升赋能,实现教育数据的安全共享、高等教育体系的智慧治理。 可信教育区块链治理系统的顶层治理架构由教育部、高校、企业、学生等多方角色共同参与建设、维护,支撑教育资源共享、教学质量评估、