Ce site fonctionne mieux avec JavaScript.
Accueil
Aide
Connexion
heuzef
/
WiringPi
miroir de
https://github.com/WiringPi/WiringPi.git
Suivre
1
Ajouter aux favoris
0
Bifurcation
0
Code
Tickets
0
Versions
9
Wiki
Activité
Parcourir la source
Gah. another small fix to the I2C code.
pull/22/head
Gordon Henderson
il y a 11 ans
Parent
a7c21d3efc
révision
41fb1b9e2a
2 fichiers modifiés
avec
2 ajouts
et
2 suppressions
Vue séparée
Option de Diff
Voir les Statistiques
Télécharger le Fichier Patch
Télécharger le Fichier des Différences
+1
-1
gpio/gpio.c
+1
-1
wiringPi/wiringPiI2C.c
+ 1
- 1
gpio/gpio.c
Voir le fichier
@@ -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
Voir le fichier
@@ -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 ;
}
Écrire
Aperçu
Chargement…
Annuler
Enregistrer