linux内核开启i2c-gpio
时间: 2023-10-04 12:08:57 浏览: 229
linux内核的gpio接口
5星 · 资源好评率100%
要在Linux内核中开启i2c-gpio,您可以按照以下步骤进行操作:
1. 打开内核配置:make menuconfig
2. 进入 "Device Drivers" -> "I2C support",将 "I2C Hardware Bus support" 和 "I2C device interface" 都选中。
3. 进入 "Device Drivers" -> "GPIO Support",将 "GPIO bit-banged I2C drivers" 选中。
4. 进入 "Device Drivers" -> "GPIO Support" -> "Bit-banged I2C",将 "I2C bit-banging interfaces" 和 "I2C-gpio" 都选中。
5. 保存配置并重新编译内核。
6. 在启动时加载i2c-gpio模块:modprobe i2c-gpio。
这样就可以在Linux内核中开启i2c-gpio了。
阅读全文