使用 JavaScript能使本网站更好的工作。
首页
帮助
登录
heuzef
/
WiringPi
镜像自地址
https://github.com/WiringPi/WiringPi.git
关注
1
点赞
0
派生
0
代码
工单
0
版本发布
9
百科
动态
浏览代码
Gah. another small fix to the I2C code.
pull/22/head
Gordon Henderson
11 年前
父节点
a7c21d3efc
当前提交
41fb1b9e2a
共有
2 个文件被更改
,包括
2 次插入
和
2 次删除
分列视图
Diff 选项
显示统计
下载 Patch 文件
下载 Diff 文件
+1
-1
gpio/gpio.c
+1
-1
wiringPi/wiringPiI2C.c
+ 1
- 1
gpio/gpio.c
查看文件
@@ -48,7 +48,7 @@ extern int wiringPiDebug ;
# define FALSE (1==2)
#endif
#define VERSION "2.0
4
"
#define VERSION "2.0
5
"
#define I2CDETECT "/usr/sbin/i2cdetect"
static int wpMode ;
+ 1
- 1
wiringPi/wiringPiI2C.c
查看文件
@@ -150,7 +150,7 @@ int wiringPiI2CReadReg16 (int fd, int reg)
if (i2c_smbus_access (fd, I2C_SMBUS_READ, reg, I2C_SMBUS_WORD_DATA, &data))
return -1 ;
else
return data.
byte
& 0xFFFF ;
return data.
word
& 0xFFFF ;
}
撰写
预览
正在加载...
取消
保存