23 Jan
2008
23 Jan
'08
12:09 p.m.
Just covering the things that are still missing...
At Mon, 21 Jan 2008 20:25:37 +0000, mazarick@bellsouth.net wrote:
- Are there tools that are almost always used when writing a
sound card driver like gdb, ddd, etc?
Don't forget strace. It's quite useful to track down strange behavior or the driver.
- Since it's easy to do, is an interface into the proc file
system useful from the start? http://www.alsa-project.org/~tiwai/writing-an-alsa-driver/c1493.htm
You can implement a proc write for debugging. It's useful for changing the register value on the fly.
Takashi