Este site funciona melhor com JavaScript.
Página inicial
Ajuda
Acessar
heuzef
/
WiringPi
espelhamento de
https://github.com/WiringPi/WiringPi.git
Observar
1
Favorito
0
Fork
0
Código
Issues
0
Versões
9
Wiki
Atividade
Ver código fonte
Gah. another small fix to the I2C code.
pull/22/head
Gordon Henderson
11 anos atrás
pai
a7c21d3efc
commit
41fb1b9e2a
2 arquivos alterados
com
2 adições
e
2 exclusões
Visão dividida
Opções de diferenças
Mostrar estatísticas
Baixar arquivo de patch
Baixar arquivo de diferenças
+1
-1
gpio/gpio.c
+1
-1
wiringPi/wiringPiI2C.c
+ 1
- 1
gpio/gpio.c
Ver arquivo
@@ -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
Ver arquivo
@@ -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 ;
}
Escrever
Pré-visualização
Carregando…
Cancelar
Salvar