Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我尝试了以下方法在 linux 用户空间中导出 gpio:
在内核配置中,
Device Drivers ---> --- GPIO Support [*] /sys/class/gpio/... (sysfs interface)
GPIO=9
echo $GPIO >/sys/class/gpio/export
used gpio_export(9)在我的代码中
used gpio_export(9)
试图导出所有的gpio。但是没有导出gpio。
在 sysfs 中导出 gpio 引脚时我缺少什么 ..?
您是否通过“gpio_request”请求了 GPIO?调用 gpio_export 应该将 GPIO 导出到 sysfs 以进行控制。