Quellcode durchsuchen
Update mcp3002.c
fixed: wrong value for bitwise left shift
tested using a MCP3002-I/SN with raspberry pi 3 b+ running Raspbian GNU/Linux 9.11
measured devices: 5k slide potentiometer & dwyer 628
pull/78/head
virtuosonic
vor 4 Jahren
committed by
GitHub
Ursprung
Commit
5f69495de6
Es konnte kein GPG-Schlüssel zu dieser Signatur gefunden werden
GPG-Schlüssel-ID: 4AEE18F83AFDEB23
1 geänderte Dateien mit
1 neuen und
1 gelöschten Zeilen
wiringPi/mcp3002.c
@@ -49,7 +49,7 @@ static int myAnalogRead (struct wiringPiNodeStruct *node, int pin)
wiringPiSPIDataRW (node->fd, spiData, 2) ;
return ((spiData [0] << 8 ) | (spiData [1] >> 1)) & 0x3FF ;
return ((spiData [0] << 7 ) | (spiData [1] >> 1)) & 0x3FF ;
}