How to implement mouse drivers Linux USB mouse driver?

device-driver, linux, linux-device-driver, linux-kernel

Solution

As guidance given by Mr. Stark which is essential before writing a module. As far as the problem of usb mouse driver you can check the following link. For the unknown USB device you can refer this link. More links for usb mouse driver : link1 link2

Problem

I need to control mouse pointer of my computer screen using an external device.I just know i have to write a device driver for that device. It's a usb device. Can anyone tell me how should i approach this problem ? What are the modules and algorithms will be required for this? I ll appreciate if you can provide some reference material? Sorry for such trivial questions but am a newbie in Linux device driver area.

Original source

Related problems