标签:href .com 查询 src 寄存器 log http tool image
# i2cdetect -l
i2c-0 i2c OMAP I2C adapter I2C adapter
i2c-1 i2c OMAP I2C adapter I2C adapter
# i2cdetect -y 0
从上图可看出,在i2c 总线0上有1个设备地址为0x50
0 ------- i2c-0,
-y------- 取消用户交互,直接执行
-f --------强制执行
# i2cdump -f -y 0 0x50
# i2cset -y -f 0 0x50 0x00 0x11
0 ------- i2c-0,
-y ------- 取消用户交互,直接执行
-f ------- 强制执行
0x50:I2C设备地址
0x00:寄存器地址
0x11:要写入的值
再次读取发现数据改变了,写入成功:
# i2cdump -f -y 0 0x50
https://blog.csdn.net/yyyyyyyyyywwwwwwwwww/article/details/50233223
https://blog.csdn.net/kunkliu/article/details/78218165
http://blog.chinaunix.net/uid-26895763-id-3478882.html
标签:href .com 查询 src 寄存器 log http tool image
原文地址:https://www.cnblogs.com/yangxuli/p/9931576.html