0

libhidに問題があります。

Linuxでusb-hidにアクセスする2ウェイ4があることがわかりました

1) input.hhiddev.hなどの Linux のデフォルト ライブラリと ...

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 などの IDE をコンパイルした方法、またはターミナルと 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