wacom驱动分析

wacom_features数组记录着各类wacom手写板型号的信息
其中第28个元素,和我这个手写板型号一样。且VendorID为USB_VENDOR_ID_WACOM,ProductID为0x65

其中函数wacom_graphire_irq是对手写板数据读取的重要函数。

        x = data[2] | ((__u32)data[3] << 8);
        y = data[4] | ((__u32)data[5] << 8);

posted @ 2009-08-11 21:30  Fan Zhang  阅读(222)  评论(0)    收藏  举报