wiring_lmk 2.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (87) hide show
  1. checksums.yaml +7 -0
  2. data/ext/wiringpi/WiringPi/devLib/ds1302.c +254 -0
  3. data/ext/wiringpi/WiringPi/devLib/ds1302.h +44 -0
  4. data/ext/wiringpi/WiringPi/devLib/font.h +2577 -0
  5. data/ext/wiringpi/WiringPi/devLib/gertboard.c +164 -0
  6. data/ext/wiringpi/WiringPi/devLib/gertboard.h +45 -0
  7. data/ext/wiringpi/WiringPi/devLib/lcd.c +507 -0
  8. data/ext/wiringpi/WiringPi/devLib/lcd.h +52 -0
  9. data/ext/wiringpi/WiringPi/devLib/lcd128x64.c +684 -0
  10. data/ext/wiringpi/WiringPi/devLib/lcd128x64.h +39 -0
  11. data/ext/wiringpi/WiringPi/devLib/maxdetect.c +167 -0
  12. data/ext/wiringpi/WiringPi/devLib/maxdetect.h +40 -0
  13. data/ext/wiringpi/WiringPi/devLib/piFace.c +112 -0
  14. data/ext/wiringpi/WiringPi/devLib/piFace.h +32 -0
  15. data/ext/wiringpi/WiringPi/devLib/piFaceOld.c +178 -0
  16. data/ext/wiringpi/WiringPi/devLib/piGlow.c +118 -0
  17. data/ext/wiringpi/WiringPi/devLib/piGlow.h +45 -0
  18. data/ext/wiringpi/WiringPi/devLib/piNes.c +117 -0
  19. data/ext/wiringpi/WiringPi/devLib/piNes.h +45 -0
  20. data/ext/wiringpi/WiringPi/gpio/extensions.c +700 -0
  21. data/ext/wiringpi/WiringPi/gpio/extensions.h +26 -0
  22. data/ext/wiringpi/WiringPi/gpio/gpio.c +1280 -0
  23. data/ext/wiringpi/WiringPi/gpio/pins.c +33 -0
  24. data/ext/wiringpi/WiringPi/gpio/readall.c +337 -0
  25. data/ext/wiringpi/WiringPi/wiringPi/drcSerial.c +201 -0
  26. data/ext/wiringpi/WiringPi/wiringPi/drcSerial.h +33 -0
  27. data/ext/wiringpi/WiringPi/wiringPi/max31855.c +99 -0
  28. data/ext/wiringpi/WiringPi/wiringPi/max31855.h +33 -0
  29. data/ext/wiringpi/WiringPi/wiringPi/max5322.c +84 -0
  30. data/ext/wiringpi/WiringPi/wiringPi/max5322.h +33 -0
  31. data/ext/wiringpi/WiringPi/wiringPi/mcp23008.c +149 -0
  32. data/ext/wiringpi/WiringPi/wiringPi/mcp23008.h +33 -0
  33. data/ext/wiringpi/WiringPi/wiringPi/mcp23016.c +164 -0
  34. data/ext/wiringpi/WiringPi/wiringPi/mcp23016.h +33 -0
  35. data/ext/wiringpi/WiringPi/wiringPi/mcp23016reg.h +48 -0
  36. data/ext/wiringpi/WiringPi/wiringPi/mcp23017.c +195 -0
  37. data/ext/wiringpi/WiringPi/wiringPi/mcp23017.h +33 -0
  38. data/ext/wiringpi/WiringPi/wiringPi/mcp23s08.c +189 -0
  39. data/ext/wiringpi/WiringPi/wiringPi/mcp23s08.h +33 -0
  40. data/ext/wiringpi/WiringPi/wiringPi/mcp23s17.c +234 -0
  41. data/ext/wiringpi/WiringPi/wiringPi/mcp23s17.h +33 -0
  42. data/ext/wiringpi/WiringPi/wiringPi/mcp23x08.h +73 -0
  43. data/ext/wiringpi/WiringPi/wiringPi/mcp23x0817.h +87 -0
  44. data/ext/wiringpi/WiringPi/wiringPi/mcp3002.c +76 -0
  45. data/ext/wiringpi/WiringPi/wiringPi/mcp3002.h +33 -0
  46. data/ext/wiringpi/WiringPi/wiringPi/mcp3004.c +76 -0
  47. data/ext/wiringpi/WiringPi/wiringPi/mcp3004.h +33 -0
  48. data/ext/wiringpi/WiringPi/wiringPi/mcp3422.c +113 -0
  49. data/ext/wiringpi/WiringPi/wiringPi/mcp3422.h +43 -0
  50. data/ext/wiringpi/WiringPi/wiringPi/mcp4802.c +76 -0
  51. data/ext/wiringpi/WiringPi/wiringPi/mcp4802.h +33 -0
  52. data/ext/wiringpi/WiringPi/wiringPi/pcf8574.c +126 -0
  53. data/ext/wiringpi/WiringPi/wiringPi/pcf8574.h +33 -0
  54. data/ext/wiringpi/WiringPi/wiringPi/pcf8591.c +92 -0
  55. data/ext/wiringpi/WiringPi/wiringPi/pcf8591.h +33 -0
  56. data/ext/wiringpi/WiringPi/wiringPi/piHiPri.c +51 -0
  57. data/ext/wiringpi/WiringPi/wiringPi/piThread.c +63 -0
  58. data/ext/wiringpi/WiringPi/wiringPi/sn3218.c +75 -0
  59. data/ext/wiringpi/WiringPi/wiringPi/sn3218.h +33 -0
  60. data/ext/wiringpi/WiringPi/wiringPi/softPwm.c +168 -0
  61. data/ext/wiringpi/WiringPi/wiringPi/softPwm.h +35 -0
  62. data/ext/wiringpi/WiringPi/wiringPi/softServo.c +247 -0
  63. data/ext/wiringpi/WiringPi/wiringPi/softServo.h +35 -0
  64. data/ext/wiringpi/WiringPi/wiringPi/softTone.c +150 -0
  65. data/ext/wiringpi/WiringPi/wiringPi/softTone.h +39 -0
  66. data/ext/wiringpi/WiringPi/wiringPi/sr595.c +113 -0
  67. data/ext/wiringpi/WiringPi/wiringPi/sr595.h +34 -0
  68. data/ext/wiringpi/WiringPi/wiringPi/wiringPi.c +3688 -0
  69. data/ext/wiringpi/WiringPi/wiringPi/wiringPi.h +229 -0
  70. data/ext/wiringpi/WiringPi/wiringPi/wiringPiI2C.c +236 -0
  71. data/ext/wiringpi/WiringPi/wiringPi/wiringPiI2C.h +42 -0
  72. data/ext/wiringpi/WiringPi/wiringPi/wiringPiSPI.c +121 -0
  73. data/ext/wiringpi/WiringPi/wiringPi/wiringPiSPI.h +35 -0
  74. data/ext/wiringpi/WiringPi/wiringPi/wiringSerial.c +253 -0
  75. data/ext/wiringpi/WiringPi/wiringPi/wiringSerial.h +38 -0
  76. data/ext/wiringpi/WiringPi/wiringPi/wiringShift.c +83 -0
  77. data/ext/wiringpi/WiringPi/wiringPi/wiringShift.h +41 -0
  78. data/ext/wiringpi/extconf.rb +8 -0
  79. data/ext/wiringpi/wiringpi_wrap.c +4396 -0
  80. data/lib/wiring_lmk.rb +42 -0
  81. data/lib/wiring_lmk/event.rb +21 -0
  82. data/lib/wiring_lmk/gpio.rb +139 -0
  83. data/lib/wiring_lmk/i2c.rb +26 -0
  84. data/lib/wiring_lmk/mcp23x17.rb +31 -0
  85. data/lib/wiring_lmk/serial.rb +49 -0
  86. data/lib/wiring_lmk/spi.rb +15 -0
  87. metadata +136 -0
@@ -0,0 +1,229 @@
1
+ /*
2
+ * wiringPi:
3
+ * Arduino compatable (ish) Wiring library for the Raspberry Pi
4
+ * Copyright (c) 2012 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 published by
11
+ * the Free Software Foundation, either version 3 of the License, or
12
+ * (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 License
20
+ * along with wiringPi. If not, see <http://www.gnu.org/licenses/>.
21
+ ***********************************************************************
22
+ */
23
+
24
+ #ifndef __WIRING_PI_H__
25
+ #define __WIRING_PI_H__
26
+
27
+ // Handy defines
28
+
29
+ // Deprecated
30
+ #define NUM_PINS 17
31
+
32
+ #define WPI_MODE_PINS 0
33
+ #define WPI_MODE_GPIO 1
34
+ #define WPI_MODE_GPIO_SYS 2
35
+ #define WPI_MODE_PHYS 3
36
+ #define WPI_MODE_PIFACE 4
37
+ #define WPI_MODE_UNINITIALISED -1
38
+
39
+ // Pin modes
40
+
41
+ #define INPUT 0
42
+ #define OUTPUT 1
43
+ #define PWM_OUTPUT 2
44
+ #define GPIO_CLOCK 3
45
+ #define SOFT_PWM_OUTPUT 4
46
+ #define SOFT_TONE_OUTPUT 5
47
+ #define PWM_TONE_OUTPUT 6
48
+
49
+
50
+ #define LOW 0
51
+ #define HIGH 1
52
+
53
+ // Pull up/down/none
54
+
55
+ #define PUD_OFF 0
56
+ #define PUD_DOWN 1
57
+ #define PUD_UP 2
58
+
59
+ // PWM
60
+
61
+ #define PWM_MODE_MS 0
62
+ #define PWM_MODE_BAL 1
63
+
64
+ // Interrupt levels
65
+
66
+ #define INT_EDGE_SETUP 0
67
+ #define INT_EDGE_FALLING 1
68
+ #define INT_EDGE_RISING 2
69
+ #define INT_EDGE_BOTH 3
70
+
71
+ // Pi model types and version numbers
72
+ // Intended for the GPIO program Use at your own risk.
73
+
74
+ #define PI_MODEL_UNKNOWN 0
75
+ #define PI_MODEL_A 1
76
+ #define PI_MODEL_B 2
77
+ #define PI_MODEL_BP 3
78
+ #define PI_MODEL_CM 4
79
+ #define PI_MODEL_BPR 5 //add for BananaPro by LeMaker team
80
+
81
+ #define PI_VERSION_UNKNOWN 0
82
+ #define PI_VERSION_1 1
83
+ #define PI_VERSION_1_1 2
84
+ #define PI_VERSION_1_2 3
85
+ #define PI_VERSION_2 4
86
+
87
+ #define PI_MAKER_UNKNOWN 0
88
+ #define PI_MAKER_EGOMAN 1
89
+ #define PI_MAKER_SONY 2
90
+ #define PI_MAKER_QISDA 3
91
+ #define PI_MAKER_LEMAKER 4 //add for BananaPro by LeMaker team
92
+
93
+ #define BP_REV 3 //add for BananaPro by lemaker team
94
+ #define S500_REV 4 //add for S500
95
+
96
+ extern const char *piModelNames [7] ;
97
+ extern const char *piRevisionNames [5] ;
98
+ extern const char *piMakerNames [5] ;
99
+
100
+
101
+ // Intended for the GPIO program Use at your own risk.
102
+
103
+ // Threads
104
+
105
+ #define PI_THREAD(X) void *X (void *dummy)
106
+
107
+ // Failure modes
108
+
109
+ #define WPI_FATAL (1==1)
110
+ #define WPI_ALMOST (1==2)
111
+
112
+
113
+ // wiringPiNodeStruct:
114
+ // This describes additional device nodes in the extended wiringPi
115
+ // 2.0 scheme of things.
116
+ // It's a simple linked list for now, but will hopefully migrate to
117
+ // a binary tree for efficiency reasons - but then again, the chances
118
+ // of more than 1 or 2 devices being added are fairly slim, so who
119
+ // knows....
120
+
121
+ struct wiringPiNodeStruct
122
+ {
123
+ int pinBase ;
124
+ int pinMax ;
125
+
126
+ int fd ; // Node specific
127
+ unsigned int data0 ; // ditto
128
+ unsigned int data1 ; // ditto
129
+ unsigned int data2 ; // ditto
130
+ unsigned int data3 ; // ditto
131
+
132
+ void (*pinMode) (struct wiringPiNodeStruct *node, int pin, int mode) ;
133
+ void (*pullUpDnControl) (struct wiringPiNodeStruct *node, int pin, int mode) ;
134
+ int (*digitalRead) (struct wiringPiNodeStruct *node, int pin) ;
135
+ void (*digitalWrite) (struct wiringPiNodeStruct *node, int pin, int value) ;
136
+ void (*pwmWrite) (struct wiringPiNodeStruct *node, int pin, int value) ;
137
+ int (*analogRead) (struct wiringPiNodeStruct *node, int pin) ;
138
+ void (*analogWrite) (struct wiringPiNodeStruct *node, int pin, int value) ;
139
+
140
+ struct wiringPiNodeStruct *next ;
141
+ } ;
142
+
143
+ extern struct wiringPiNodeStruct *wiringPiNodes ;
144
+
145
+
146
+ // Function prototypes
147
+ // c++ wrappers thanks to a comment by Nick Lott
148
+ // (and others on the Raspberry Pi forums)
149
+
150
+ #ifdef __cplusplus
151
+ extern "C" {
152
+ #endif
153
+
154
+ // Data
155
+
156
+ // Internal
157
+
158
+ extern int wiringPiFailure (int fatal, const char *message, ...) ;
159
+
160
+ // Core wiringPi functions
161
+
162
+ extern struct wiringPiNodeStruct *wiringPiFindNode (int pin) ;
163
+ extern struct wiringPiNodeStruct *wiringPiNewNode (int pinBase, int numPins) ;
164
+
165
+ extern int wiringPiSetup (void) ;
166
+ extern int wiringPiSetupSys (void) ;
167
+ extern int wiringPiSetupGpio (void) ;
168
+ extern int wiringPiSetupPhys (void) ;
169
+
170
+
171
+ extern void pinModeAlt (int pin, int mode) ;
172
+ extern void pinMode (int pin, int mode) ;
173
+ extern void pullUpDnControl (int pin, int pud) ;
174
+ extern int digitalRead (int pin) ;
175
+ extern void digitalWrite (int pin, int value) ;
176
+ extern void pwmWrite (int pin, int value) ;
177
+ extern int analogRead (int pin) ;
178
+ extern void analogWrite (int pin, int value) ;
179
+
180
+ // PiFace specifics
181
+ // (Deprecated)
182
+
183
+ extern int wiringPiSetupPiFace (void) ;
184
+ extern int wiringPiSetupPiFaceForGpioProg (void) ; // Don't use this - for gpio program only
185
+
186
+ // On-Board Raspberry Pi hardware specific stuff
187
+
188
+ extern int piBoardRev (void) ;
189
+ extern void piBoardId (int *model, int *rev, int *mem, int *maker, int *overVolted) ;
190
+ extern int wpiPinToGpio (int wpiPin) ;
191
+ extern int physPinToGpio (int physPin) ;
192
+ extern int physPinToPin (int physPin); //add by LeMaker team for Bananapi
193
+ extern void setPadDrive (int group, int value) ;
194
+ extern int getAlt (int pin) ;
195
+ extern void pwmToneWrite (int pin, int freq) ;
196
+ extern void digitalWriteByte (int value) ;
197
+ extern void pwmSetMode (int mode) ;
198
+ extern void pwmSetRange (unsigned int range) ;
199
+ extern void pwmSetClock (int divisor) ;
200
+ extern void gpioClockSet (int pin, int freq) ;
201
+
202
+ // Interrupts
203
+ // (Also Pi hardware specific)
204
+
205
+ extern int waitForInterrupt (int pin, int mS) ;
206
+ extern int wiringPiISR (int pin, int mode, void (*function)(void)) ;
207
+
208
+ // Threads
209
+
210
+ extern int piThreadCreate (void *(*fn)(void *)) ;
211
+ extern void piLock (int key) ;
212
+ extern void piUnlock (int key) ;
213
+
214
+ // Schedulling priority
215
+
216
+ extern int piHiPri (const int pri) ;
217
+
218
+ // Extras from arduino land
219
+
220
+ extern void delay (unsigned int howLong) ;
221
+ extern void delayMicroseconds (unsigned int howLong) ;
222
+ extern unsigned int millis (void) ;
223
+ extern unsigned int micros (void) ;
224
+
225
+ #ifdef __cplusplus
226
+ }
227
+ #endif
228
+
229
+ #endif
@@ -0,0 +1,236 @@
1
+ /*
2
+ * wiringPiI2C.c:
3
+ * Simplified I2C access routines
4
+ * Copyright (c) 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
+ /*
26
+ * Notes:
27
+ * The Linux I2C code is actually the same (almost) as the SMBus code.
28
+ * SMBus is System Management Bus - and in essentially I2C with some
29
+ * additional functionality added, and stricter controls on the electrical
30
+ * specifications, etc. however I2C does work well with it and the
31
+ * protocols work over both.
32
+ *
33
+ * I'm directly including the SMBus functions here as some Linux distros
34
+ * lack the correct header files, and also some header files are GPLv2
35
+ * rather than the LGPL that wiringPi is released under - presumably because
36
+ * originally no-one expected I2C/SMBus to be used outside the kernel -
37
+ * however enter the Raspberry Pi with people now taking directly to I2C
38
+ * devices without going via the kernel...
39
+ *
40
+ * This may ultimately reduce the flexibility of this code, but it won't be
41
+ * hard to maintain it and keep it current, should things change.
42
+ *
43
+ * Information here gained from: kernel/Documentation/i2c/dev-interface
44
+ * as well as other online resources.
45
+ *********************************************************************************
46
+ */
47
+
48
+ #include <stdio.h>
49
+ #include <stdlib.h>
50
+ #include <stdint.h>
51
+ #include <errno.h>
52
+ #include <string.h>
53
+ #include <fcntl.h>
54
+ #include <sys/ioctl.h>
55
+
56
+ #include "wiringPi.h"
57
+ #include "wiringPiI2C.h"
58
+
59
+ // I2C definitions
60
+
61
+ #define I2C_SLAVE 0x0703
62
+ #define I2C_SMBUS 0x0720 /* SMBus-level access */
63
+
64
+ #define I2C_SMBUS_READ 1
65
+ #define I2C_SMBUS_WRITE 0
66
+
67
+ // SMBus transaction types
68
+
69
+ #define I2C_SMBUS_QUICK 0
70
+ #define I2C_SMBUS_BYTE 1
71
+ #define I2C_SMBUS_BYTE_DATA 2
72
+ #define I2C_SMBUS_WORD_DATA 3
73
+ #define I2C_SMBUS_PROC_CALL 4
74
+ #define I2C_SMBUS_BLOCK_DATA 5
75
+ #define I2C_SMBUS_I2C_BLOCK_BROKEN 6
76
+ #define I2C_SMBUS_BLOCK_PROC_CALL 7 /* SMBus 2.0 */
77
+ #define I2C_SMBUS_I2C_BLOCK_DATA 8
78
+
79
+ // SMBus messages
80
+
81
+ #define I2C_SMBUS_BLOCK_MAX 32 /* As specified in SMBus standard */
82
+ #define I2C_SMBUS_I2C_BLOCK_MAX 32 /* Not specified but we use same structure */
83
+
84
+ // Structures used in the ioctl() calls
85
+
86
+ union i2c_smbus_data
87
+ {
88
+ uint8_t byte ;
89
+ uint16_t word ;
90
+ uint8_t block [I2C_SMBUS_BLOCK_MAX + 2] ; // block [0] is used for length + one more for PEC
91
+ } ;
92
+
93
+ struct i2c_smbus_ioctl_data
94
+ {
95
+ char read_write ;
96
+ uint8_t command ;
97
+ int size ;
98
+ union i2c_smbus_data *data ;
99
+ } ;
100
+
101
+ static inline int i2c_smbus_access (int fd, char rw, uint8_t command, int size, union i2c_smbus_data *data)
102
+ {
103
+ struct i2c_smbus_ioctl_data args ;
104
+
105
+ args.read_write = rw ;
106
+ args.command = command ;
107
+ args.size = size ;
108
+ args.data = data ;
109
+ return ioctl (fd, I2C_SMBUS, &args) ;
110
+ }
111
+
112
+
113
+ /*
114
+ * wiringPiI2CRead:
115
+ * Simple device read
116
+ *********************************************************************************
117
+ */
118
+
119
+ int wiringPiI2CRead (int fd)
120
+ {
121
+ union i2c_smbus_data data ;
122
+
123
+ if (i2c_smbus_access (fd, I2C_SMBUS_READ, 0, I2C_SMBUS_BYTE, &data))
124
+ return -1 ;
125
+ else
126
+ return data.byte & 0xFF ;
127
+ }
128
+
129
+
130
+ /*
131
+ * wiringPiI2CReadReg8: wiringPiI2CReadReg16:
132
+ * Read an 8 or 16-bit value from a regsiter on the device
133
+ *********************************************************************************
134
+ */
135
+
136
+ int wiringPiI2CReadReg8 (int fd, int reg)
137
+ {
138
+ union i2c_smbus_data data;
139
+
140
+ if (i2c_smbus_access (fd, I2C_SMBUS_READ, reg, I2C_SMBUS_BYTE_DATA, &data))
141
+ return -1 ;
142
+ else
143
+ return data.byte & 0xFF ;
144
+ }
145
+
146
+ int wiringPiI2CReadReg16 (int fd, int reg)
147
+ {
148
+ union i2c_smbus_data data;
149
+
150
+ if (i2c_smbus_access (fd, I2C_SMBUS_READ, reg, I2C_SMBUS_WORD_DATA, &data))
151
+ return -1 ;
152
+ else
153
+ return data.word & 0xFFFF ;
154
+ }
155
+
156
+
157
+ /*
158
+ * wiringPiI2CWrite:
159
+ * Simple device write
160
+ *********************************************************************************
161
+ */
162
+
163
+ int wiringPiI2CWrite (int fd, int data)
164
+ {
165
+ return i2c_smbus_access (fd, I2C_SMBUS_WRITE, data, I2C_SMBUS_BYTE, NULL) ;
166
+ }
167
+
168
+
169
+ /*
170
+ * wiringPiI2CWriteReg8: wiringPiI2CWriteReg16:
171
+ * Write an 8 or 16-bit value to the given register
172
+ *********************************************************************************
173
+ */
174
+
175
+ int wiringPiI2CWriteReg8 (int fd, int reg, int value)
176
+ {
177
+ union i2c_smbus_data data ;
178
+
179
+ data.byte = value ;
180
+ return i2c_smbus_access (fd, I2C_SMBUS_WRITE, reg, I2C_SMBUS_BYTE_DATA, &data) ;
181
+ }
182
+
183
+ int wiringPiI2CWriteReg16 (int fd, int reg, int value)
184
+ {
185
+ union i2c_smbus_data data ;
186
+
187
+ data.word = value ;
188
+ return i2c_smbus_access (fd, I2C_SMBUS_WRITE, reg, I2C_SMBUS_WORD_DATA, &data) ;
189
+ }
190
+
191
+
192
+ /*
193
+ * wiringPiI2CSetupInterface:
194
+ * Undocumented access to set the interface explicitly - might be used
195
+ * for the Pi's 2nd I2C interface...
196
+ *********************************************************************************
197
+ */
198
+
199
+ int wiringPiI2CSetupInterface (const char *device, int devId)
200
+ {
201
+ int fd ;
202
+
203
+ if ((fd = open (device, O_RDWR)) < 0)
204
+ return wiringPiFailure (WPI_ALMOST, "Unable to open I2C device: %s\n", strerror (errno)) ;
205
+
206
+ if (ioctl (fd, I2C_SLAVE, devId) < 0)
207
+ return wiringPiFailure (WPI_ALMOST, "Unable to select I2C device: %s\n", strerror (errno)) ;
208
+
209
+ return fd ;
210
+ }
211
+
212
+
213
+ /*
214
+ * wiringPiI2CSetup:
215
+ * Open the I2C device, and regsiter the target device
216
+ *********************************************************************************
217
+ */
218
+
219
+ int wiringPiI2CSetup (const int devId)
220
+ {
221
+ int rev ;
222
+ const char *device ;
223
+
224
+ rev = piBoardRev () ;
225
+ /*modify for BananaPro by LeMaker team*/
226
+ if (rev == 1)
227
+ device = "/dev/i2c-0" ;
228
+ else if (rev == 2)
229
+ device = "/dev/i2c-1" ;
230
+ else if (rev == 3 || rev == 4)
231
+ device = "/dev/i2c-2";
232
+ else
233
+ device = "/dev/i2c-3" ;
234
+
235
+ return wiringPiI2CSetupInterface (device, devId) ;
236
+ }