This repository has been archived by the owner on Apr 18, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 21
/
gpio-sysfs.c
126 lines (95 loc) · 1.92 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
/*
* Linux GPIO backend using sysfs
*
* Copyright (C) 2010, Florian Fainelli <[email protected]>
*
* This file is part of "cc2530prog", this file is distributed under
* a 2-clause BSD license, see LICENSE for details.
*/
#include <stdio.h>
#include <string.h>
#include <fcntl.h>
#include <unistd.h>
#include <errno.h>
#include "gpio.h"
#define SYSFS_GPIO "/sys/class/gpio"
int read_file(const char *path, char *str, size_t size)
{
int fd;
int ret;
fd = open(path, O_RDONLY);
if (fd < 0) {
perror(path);
return -1;
}
ret = read(fd, str, size - 1);
if (ret < 0) {
perror("read");
close(fd);
return -1;
}
close(fd);
str[ret] = '\0';
return 0;
}
int write_file(const char *path, const char *str)
{
int fd;
int ret;
fd = open(path, O_WRONLY);
if (fd < 0) {
perror(path);
return -1;
}
ret = write(fd, str, strlen(str));
if (ret < 0) {
if (errno == EBUSY)
ret = 0;
else
perror("write");
}
close(fd);
return ret < 0 ? -1 : 0;
}
int
gpio_export(int n)
{
char buf[16];
snprintf(buf, sizeof (buf), "%d", n);
return write_file(SYSFS_GPIO "/export", buf);
}
int gpio_unexport(int n)
{
char buf[16];
snprintf(buf, sizeof(buf), "%d", n);
return write_file(SYSFS_GPIO "/unexport", buf);
}
int
gpio_set_direction(int n, enum gpio_direction direction)
{
static const char *str[] = {
[GPIO_DIRECTION_IN] = "in",
[GPIO_DIRECTION_OUT] = "out",
[GPIO_DIRECTION_HIGH] = "high",
};
char path[128];
snprintf(path, sizeof (path), SYSFS_GPIO "/gpio%d/direction", n);
return write_file(path, str[direction]);
}
int
gpio_get_value(int n, bool *value)
{
char buf[128];
snprintf(buf, sizeof (buf), SYSFS_GPIO "/gpio%d/value", n);
if (read_file(buf, buf, sizeof (buf)) < 0)
return -1;
*value = (*buf != '0');
return 0;
}
int
gpio_set_value(int n, bool value)
{
char path[128];
snprintf(path, sizeof (path), SYSFS_GPIO "/gpio%d/value", n);
return write_file(path, value ? "1" : "0");
}