Преглед на файлове
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
преди 4 години
committed by
GitHub
родител
ревизия
5f69495de6
No known key found for this signature in database
GPG ключ ID: 4AEE18F83AFDEB23
променени са
1 файла , в които са
добавени 1 реда и са
изтрити 1 реда
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 ;
}