ソースを参照

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
この署名に対応する既知のキーがデータベースに存在しません GPGキーID: 4AEE18F83AFDEB23
1個のファイルの変更1行の追加1行の削除
  1. +1
    -1
      wiringPi/mcp3002.c

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




読み込み中…
キャンセル
保存