ソースを参照

Gah. another small fix to the I2C code.

pull/22/head
Gordon Henderson 11年前
コミット
41fb1b9e2a
2個のファイルの変更2行の追加2行の削除
  1. +1
    -1
      gpio/gpio.c
  2. +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.04"
#define VERSION "2.05"
#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 ;
}




読み込み中…
キャンセル
保存