Procházet zdrojové kódy

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 před 4 roky
committed by GitHub
rodič
revize
5f69495de6
V databázi nebyl nalezen žádný známý klíč pro tento podpis ID GPG klíče: 4AEE18F83AFDEB23
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. +1
    -1
      wiringPi/mcp3002.c

+ 1
- 1
wiringPi/mcp3002.c Zobrazit soubor

@@ -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 ;
}




Načítá se…
Zrušit
Uložit