-
Notifications
You must be signed in to change notification settings - Fork 1
/
gpio_sysfs.c
197 lines (159 loc) · 3.84 KB
/
gpio_sysfs.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
/*
* gpio_sysfs.c
*
* Raspberry Pi GPIO handling using sysfs interface.
* Guillermo A. Amaral B. <[email protected]>
*
*/
#include <stdio.h>
#include <sys/stat.h>
#include <sys/types.h>
#include <fcntl.h>
#include <stdlib.h>
#include <unistd.h>
#include "gpio_sysfs.h"
#define IN 0
#define OUT 1
#define LOW 0
#define HIGH 1
#define PIN 24 /* P1-18 */
#define POUT 4 /* P1-07 */
/**
* Export GPIO pin for use.
* @param pin - The pin number to be used.
* @returns Zero on success -1 on failure.
*/
int gpio_export(int pin)
{
#define BUFFER_MAX 3
char buffer[BUFFER_MAX];
ssize_t bytes_written;
int fd;
fd = open("/sys/class/gpio/export", O_WRONLY);
if (-1 == fd) {
fprintf(stderr, "Failed to open export for writing!\n");
return(-1);
}
bytes_written = snprintf(buffer, BUFFER_MAX, "%d", pin);
write(fd, buffer, bytes_written);
close(fd);
return(0);
}
/**
* Unexport GPIO pin for use.
* @param pin - The pin number to be used.
* @returns Zero on success -1 on failure.
*/
int gpio_unexport(int pin)
{
char buffer[BUFFER_MAX];
ssize_t bytes_written;
int fd;
fd = open("/sys/class/gpio/unexport", O_WRONLY);
if (-1 == fd) {
fprintf(stderr, "Failed to open unexport for writing!\n");
return(-1);
}
bytes_written = snprintf(buffer, BUFFER_MAX, "%d", pin);
write(fd, buffer, bytes_written);
close(fd);
return(0);
}
/**
* Set GPIO pin direction.
* @param pin - The pin number to be used.
* @param dir - The desired pin directio, 1 = out, 0 = in.
* @returns Zero on success -1 on failure.
*/
int gpio_direction(int pin, int dir)
{
static const char s_directions_str[] = "in\0out";
#define DIRECTION_MAX 35
char path[DIRECTION_MAX];
int fd;
snprintf(path, DIRECTION_MAX, "/sys/class/gpio/gpio%d/direction", pin);
fd = open(path, O_WRONLY);
if (-1 == fd) {
fprintf(stderr, "Failed to open gpio%d direction for writing!\n", pin);
return(-1);
}
if (-1 == write(fd, &s_directions_str[IN == dir ? 0 : 3], IN == dir ? 2 : 3)) {
fprintf(stderr, "Failed to set gpio%d direction!\n", pin);
return(-1);
}
close(fd);
return(0);
}
/**
* Read GPIO pin state.
* @param pin - The pin number to be read.
* @returns The pin state 0 or 1.
*/
int gpio_read(int pin)
{
#define VALUE_MAX 30
char path[VALUE_MAX];
char value_str[3];
int fd;
snprintf(path, VALUE_MAX, "/sys/class/gpio/gpio%d/value", pin);
fd = open(path, O_RDONLY);
if (-1 == fd) {
fprintf(stderr, "Failed to open gpio%d for reading!\n", pin);
return(-1);
}
if (-1 == read(fd, value_str, 3)) {
fprintf(stderr, "Failed to read gpio%d!\n", pin);
return(-1);
}
close(fd);
return(atoi(value_str));
}
/**
* Write GPIO pin state.
* @param pin - The pin number to be written to.
* @returns The desired pin state 0 or 1.
*/
int gpio_write(int pin, int value)
{
static const char s_values_str[] = "01";
char path[VALUE_MAX];
int fd;
snprintf(path, VALUE_MAX, "/sys/class/gpio/gpio%d/value", pin);
fd = open(path, O_WRONLY);
if (-1 == fd) {
fprintf(stderr, "Failed to open gpio%d for writing!\n", pin);
return(-1);
}
if (1 != write(fd, &s_values_str[LOW == value ? 0 : 1], 1)) {
fprintf(stderr, "Failed to write gpio%d!\n", pin);
return(-1);
}
close(fd);
return(0);
}
#ifdef TEST_GPIO_SYSFS
/* This test blinks GPIO 4 (P1-07) while reading GPIO 24 (P1_18) */
int main(int argc, char *argv[])
{
int repeat = 10;
// Enable GPIO pins
if (-1 == gpio_export(POUT) || -1 == gpio_export(PIN))
return(1);
// Set GPIO directions
if (-1 == gpio_direction(POUT, OUT) || -1 == gpio_direction(PIN, IN))
return(2);
do {
// Write GPIO value
if (-1 == gpio_write(POUT, repeat % 2))
return(3);
// Read GPIO value
printf("I'm reading %d in GPIO %d\n", gpio_read(PIN), PIN);
usleep(500 * 1000);
}
while (repeat--);
// Disable GPIO pins
if (-1 == gpio_unexport(POUT) || -1 == gpio_unexport(PIN))
return(4);
return(0);
}
#endif // TEST_GPIO_SYSFS