0

我对libhid有疑问。

我发现有 2 方式 4 访问linux 中的 usb-hid

1) linux 默认库,如input.hhiddev.h和 ...

2)使用libhid

我发现 libhid 有些令人困惑并尝试使用 input.h 但我对那个 2 有问题。

我不知道如何从 ubuntu 获取有关我的设备的信息

我使用 open() 打开设备

str="/dev/inpt/eventX" \\where X=0,1,...,7(I'm not sure about this)
open(str,O_RDWR)

然后使用 ioctl 获取信息

ioctl(fd,EVIOCGVERSION,&version);

但它给了我错误的供应商和产品 ID

然后我尝试使用 libhid 但知道如何在 eclipse 或 netbeans 中使用 libhid (或任何其他库)

你能告诉我你是如何编译你的代码的,比如 eclipse 或 netbeans 或者只是使用终端和 gcc?或者如何使用 ioctl() 和 open() ?

我的整个示例代码:

#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <ftw.h>
#include <stdlib.h>
#include <pthread.h>
#include <unistd.h>
#include <errno.h>
#include <stdint.h>
#include <asm/types.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>

#include <sys/ioctl.h>
#include <linux/usbdevice_fs.h>
#include <linux/input.h>
#include <strings.h>


struct input_devinfo
{
        uint16_t bustype;
        uint16_t vendor;
        uint16_t product;
        uint16_t version;
};


int main(void) {
    //puts("!!!Hello World!!!"); /* prints !!!Hello World!!! */
    //usb_device ud;
    //int i=0;
    //string str;
    //str=char[100];
    //str="/dev/input/event0\n";

    printf("------------- start -----------------\n");
    char str[]="" ;
    int version=0;
    char c[16];
    char t;
    int i,fd;
    //for (i=0 ; i<8 ; i++)
    {
        //strcpy(c,str);
        //t=i-'0';
        //printf("salam5\n");
        //c[15]=t;

        //openning
        //open(str,O_RDONLY);//read and write
        if ((fd = open(str,O_RDWR)) < 0)
            perror("str open\n");
        else
            printf("%s opened successfully\n",str);


        ioctl(fd,EVIOCGVERSION,&version);
        printf("version = %d \n",version);
        printf("evdev driver version is %d.%d.%d\n",version >> 16, (version >> 8) & 0xff, version & 0xff);

        //geting info from device
        struct input_devinfo device_info;
        ioctl(fd,EVIOCGID,&device_info);
        printf("vendor 0x%04hx product 0x%04hx version 0x%04hx is on ?",
            device_info.vendor, device_info.product,
            device_info.version);
    }



    return EXIT_SUCCESS;
}
4

1 回答 1

0

我找到了一种在eclipse中编译我的代码的方法

1 个问题已解决

要在终端中使用 GCC 编译代码,您应该通过在命令中添加“-lhid”来为 GCC 定义 libhid:gcc test_libhid.c -lhid

如果您使用 eclipse 并且想要使用 libhid,则应将“-lhid”添加到 gcc 链接器,以便 gcc 在编译代码时可以使用 libhid,请按照以下步骤操作:

1)在项目资源管理器面板上,右键单击您的项目选择属性(最后一个选项)或选择您的项目并按 Alt+Enter

2)在左侧面板中展开“c/c++ build”并选择“setting”

3)在右侧选择“工具设置”选项卡

4)你应该在那里看到 GCC C 编译器和 GCC C 链接器和 GCC 汇编器。展开 GCC C 链接器并选择库

5)在右侧选择后,您应该看到2个框:Libraries(-l)和Libraries(-l)中的Libraries search path(-L)添加“隐藏”

注意:当您执行此步骤时,eclipse 使用 GCC 编译您的代码 eclipse 将“-lhid”参数添加到 gcc 以使其能够识别 libhid。

于 2009-08-29T06:02:13.067 回答