在linux环境下使用libusb查看idVendor和idProduct

本文介绍了如何在Linux系统中利用libusb库来查看USB设备的idVendor和idProduct。首先,需要安装libusb库;然后,编写一个名为list_devices.cpp的C++程序;接着,通过指定的命令进行编译;最后,运行程序将展示USB设备的相关信息。
摘要由CSDN通过智能技术生成

libusb is a C library that provides generic access to USB devices. It is intended to be used by developers to facilitate the production of applications that communicate with USB hardware.

It is portable: Using a single cross-platform API, it provides access to USB devices on Linux, macOS, Windows, etc.

It is user-mode: No special privilege or elevation is required for the application to communicate with a device.

It is version-agnostic: All versions of the USB protocol, from 1.0 to 3.1 (latest), are supported.

1、首先需要安装libusb

sudo apt-get install libusb-1.0-0-dev

2、输入如下代码,并命名为list_devices.cpp

#include <cassert>
#include <cstdio>
#include <libusb-1.0/libusb.h>

int main() {
        libusb_context *context = NULL;
        libusb_device **list = NULL;

        i
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值