如何从用户空间使用I2C驱动程序

时间:2013-02-11 05:27:24

标签: linux-device-driver

我有一个i2c芯片驱动程序作为linux内核的一部分。我可以通过内核启动消息验证i2c芯片驱动程序是否在内核中。我的问题,是否应该通过sysfs访问这样的i2c芯片驱动程序,如果是,那么如何。我的用户空间程序不会高度依赖于一个特定的驱动器

1 个答案:

答案 0 :(得分:0)

您可以将属性作为文件添加到sysfs条目,并编写方法以具有读/写访问权限。

        1. create attributes using `DEVICE_ATTR`. It is a preprocessor derivative.
        2. After creating the attributes create files in the same name which you gave while creating attributes.
   Once done, you can access your i2c driver.

参考此材料以供进一步参考:非常清楚 http://www.kernel.org/pub/linux/kernel/people/mochel/doc/papers/ols-2005/mochel.pdf