chiark / gitweb /
2e7d5cf57574cc2fc6d4d21bab9afaffc5488173
[wiringPi.git] / wiringPi / mcp3002.c
1 /*
2  * mcp3002.c:
3  *      Extend wiringPi with the MCP3002 SPI Analog to Digital convertor
4  *      Copyright (c) 2012-2013 Gordon Henderson
5  ***********************************************************************
6  * This file is part of wiringPi:
7  *      https://projects.drogon.net/raspberry-pi/wiringpi/
8  *
9  *    wiringPi is free software: you can redistribute it and/or modify
10  *    it under the terms of the GNU Lesser General Public License as
11  *    published by the Free Software Foundation, either version 3 of the
12  *    License, or (at your option) any later version.
13  *
14  *    wiringPi is distributed in the hope that it will be useful,
15  *    but WITHOUT ANY WARRANTY; without even the implied warranty of
16  *    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  *    GNU Lesser General Public License for more details.
18  *
19  *    You should have received a copy of the GNU Lesser General Public
20  *    License along with wiringPi.
21  *    If not, see <http://www.gnu.org/licenses/>.
22  ***********************************************************************
23  */
24
25 #include <wiringPi.h>
26 #include <wiringPiSPI.h>
27
28 #include "mcp3002.h"
29
30 /*
31  * myAnalogRead:
32  *      Return the analog value of the given pin
33  *********************************************************************************
34  */
35
36 static int myAnalogRead (struct wiringPiNodeStruct *node, int pin)
37 {
38   unsigned char spiData [2] ;
39   unsigned char chanBits ;
40   int chan = pin - node->pinBase ;
41
42   if (chan == 0)
43     chanBits = 0b11010000 ;
44   else
45     chanBits = 0b11110000 ;
46
47   spiData [0] = chanBits ;
48   spiData [1] = 0 ;
49
50   wiringPiSPIDataRW (node->fd, spiData, 2) ;
51
52   return ((spiData [0] << 7) | (spiData [1] >> 1)) & 0x3FF ;
53 }
54
55
56 /*
57  * mcp3002Setup:
58  *      Create a new wiringPi device node for an mcp2003 on the Pi's
59  *      SPI interface.
60  *********************************************************************************
61  */
62
63 int mcp3002Setup (const int pinBase, int spiChannel)
64 {
65   struct wiringPiNodeStruct *node ;
66
67   if (wiringPiSPISetup (spiChannel, 1000000) < 0)
68     return -1 ;
69
70   node = wiringPiNewNode (pinBase, 2) ;
71
72   node->fd         = spiChannel ;
73   node->analogRead = myAnalogRead ;
74
75   return 0 ;
76 }