Posts Tagged “driver”

Canon Vista 软件更新

by zhou on May 23, 2007

1月份的时候,Canon 的系列驱动和应用程序还不支持 Vista,导入照片在 Vista 上还很不稳定,只能先把相机接到装着 XP 的笔记本上,再从笔记本拷到 PC 上,非常麻烦。用 DPP 等软件也很不方便。 今天到 Canon 网站看了一下,已经有了适合 Vista 的驱动以及软件更新: 用于 Windows Vista 的 EOS USB WIA 驱动程序 6.0.0 用于 Windows 的 EOS Utility 2.0a 升级程序 用于 Windows 的 Digital Photo Professional 3.0.1 升级程序 (…)

Read the rest of this entry »

硬件模拟及驱动调试

by zhou on November 8, 2005

IBM developWorks 上的两份文章 Debugging simulated hardware on Linux, Part 1: Interrupts and Interrupt Service Routine Debugging simulated hardware on Linux, Part 2: Device driver debugging 讲述怎样构建模拟环境调试Linux驱动--感觉文笔有点乱,莫非因为作者是印度人?…… 概念不算新鲜。第一搞好交叉调试环境,其中target上用 kgdb patch。第二就是作者列出的3个要素方法,用一个kernel thread 调用 INT 产生软中断,用kernel debugger调试,用polling thread 玩极限。 为了用kernel thread 模拟中断源,你得再造待模拟设备的各种特性,包括寄存器等数据结构。所以做完这些,你会发现--作者也坦承--自己好像在搞硬件模拟了。 文章给出了一些过程逻辑,列出的参考资料比较有用。 (…)

Read the rest of this entry »