I am learning now days programming drivers.

I am doing my learning from this book Linux Device Drivers

But I am little bit lack of practice. Can you recommend me some simple projects that I can get started with.

Or some open source project that newbie can understand what is going on.

Additional examples and tutorials will be welcomed .

Thanks for help.

link|improve this question

FYI, if you want to browse the Linux kernel sources, visit lxr.linux.no, the official Linux cross-reference site – Sam Post Jan 12 '10 at 1:41
1  
See similar question stackoverflow.com/questions/60763/… – Andrew Edgecombe Jan 12 '10 at 2:54
feedback

3 Answers

up vote 2 down vote accepted

Free software magazine has an article about that :

http://www.freesoftwaremagazine.com/articles/drivers_linux?page=0%2C0

this tutorial is downloadable as PDF.

This article describes the programming of a USB driver for a home made multicolored light. I think its quite interesting :)

http://www.linuxjournal.com/article/7353

For more "complete" drivers, I would look at the code of "serial" drivers (meaning driver for devices connected to a plain old serial port or USB port) because the data transfer between your computer and the device feels more natural.

link|improve this answer
feedback

Just for the record, there is a free onlive version of the LDD3 book.

link|improve this answer
4  
This doesn't at all answer the question, at most it should be a comment on the question. – Malfist Jan 11 '10 at 22:10
Does it offend you that much? – Nikolai N Fetissov Jan 11 '10 at 22:22
feedback

Get the examples related device drivers from this link http://examples.oreilly.com/9780596005900/

Practice it.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.