如何通过sysfs访问设备?
我正在寻找教程或示例代码来帮助我了解如何在 Linux 中使用 sysfs。我是这个领域的初学者,因此,我将不胜感激我能得到的任何帮助。
我的最终目标是编写一个应用程序,让我使用 at25 驱动程序向 SPI EEPROM 读取/写入数据。
到目前为止,我已经查看了 http://www.signal11.us/oss/udev 给出的教程/ 以及 libudev 页面位于kernel.org,但他们对我帮助不大。
我应该参考哪些好的网站/文章/示例来更深入地了解 sysfs 的工作原理以及如何使用它?
I am looking for a tutorial or example code that will help me understand how to work with sysfs in linux. I am a total beginner in this area and as such, will appreciate any help I can get.
My end goal is to write an application that will let me read/write data to an SPI EEPROM using the at25 driver.
So far, I have looked at the tutorial given at http://www.signal11.us/oss/udev/ and also at the libudev page at kernel.org, but they didn't help me much.
What good sites/articles/examples should I refer to get a deeper understanding about how sysfs works and how to use it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
sysfs 是内核对象的表示,它是包含配置数据的基本属性树。我不想将它们用于用户数据,而是编写一个设备驱动程序,提供
读取
和写入
文件系统操作。The sysfs is a representation of kernel objects, which are a basic property tree containing configuration data. I'd rather not use these for user data, but instead write a device driver, providing
read
andwrite
filesystem operations.