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
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
|
#include "util.h"
#include "legato.h"
#include <termios.h>
le_result_t readFromFile(const char* path,
void* value,
int (*scanCallback)(FILE* f, void* val)) {
FILE* f = fopen(path, "r");
if (f == NULL) {
LE_WARN("Couldn't open '%s' - %m", path);
return LE_IO_ERROR;
}
int numScanned = scanCallback(f, value);
if (numScanned != 1)
return LE_FORMAT_ERROR;
fclose(f);
return LE_OK;
}
int scanIntCallback(FILE* f, void* value) {
int* val = value;
return fscanf(f, "%d", val);
}
int scanDoubleCallback(FILE* f, void* value) {
double* val = value;
return fscanf(f, "%lf", val);
}
le_result_t ioutil_readIntFromFile(const char* path, int* value) {
return readFromFile(path, value, scanIntCallback);
}
le_result_t ioutil_readDoubleFromFile(const char* path, double* value) {
return readFromFile(path, value, scanDoubleCallback);
}
le_result_t writeToFile(const char* path,
void* value,
size_t size,
size_t count,
const char* openMode) {
FILE* f = fopen(path, openMode);
if (f == NULL) {
LE_WARN("Failed to open %s for writing", path);
return LE_IO_ERROR;
}
fwrite(value, size, count, f);
fflush(f);
fclose(f);
return LE_OK;
}
le_result_t ioutil_writeToFile(const char* path,
void* value,
size_t size,
size_t count) {
return writeToFile(path, value, size, count, "w");
}
le_result_t ioutil_appendToFile(const char* path,
void* value,
size_t size,
size_t count) {
return writeToFile(path, value, size, count, "a");
}
le_result_t util_flattenRes(le_result_t* res, int nRes) {
for (int i = 0; i < nRes; i++) {
if (res[i] != LE_OK)
return res[i];
}
return LE_OK;
}
int util_getUnixDatetime() {
struct timeval tv;
gettimeofday(&tv, NULL);
return tv.tv_sec;
}
/**
* Get the last modified datetime
* of the file at path
*/
time_t util_getMTime(char* path) {
struct stat st;
if (stat(path, &st) != 0)
return -1;
else
return st.st_mtime;
}
bool util_fileExists(const char* path) {
struct stat st;
return stat(path, &st) == 0;
}
bool util_alreadyMounted(const char* devPath) {
char content[2048];
FILE* f = fopen("/proc/mounts", "r");
if (f == NULL) {
return false;
}
fread(content, sizeof(char), sizeof(content), f);
// if this ref is non-null, we found a match
return strstr(content, devPath) != NULL;
}
uint64_t GetCurrentTimestamp(void) {
struct timeval tv;
gettimeofday(&tv, NULL);
uint64_t utcMilliSec =
(uint64_t)(tv.tv_sec) * 1000 + (uint64_t)(tv.tv_usec) / 1000;
return utcMilliSec;
}
// TODO verify this is working
le_result_t gpio_exportPin(char* pin) {
int len = strlen(pin);
return ioutil_writeToFile("/sys/class/gpio/export", &pin, sizeof(char), len);
}
le_result_t gpio_unexportPin(char* pin) {
int len = strlen(pin);
return ioutil_writeToFile("/sys/class/gpio/unexport", &pin, sizeof(char),
len);
}
void getGpioPath(char* outputStr, char* pin, char* subDir) {
sprintf(outputStr, "/sys/class/gpio/gpio%s/%s", pin, subDir);
}
le_result_t gpio_setDirection(char* pin, char* direction) {
char path[100];
getGpioPath(path, pin, "direction");
return ioutil_writeToFile(path, direction, sizeof(char), strlen(direction));
}
le_result_t gpio_setPull(char* pin, char* pull) {
char path[100];
getGpioPath(path, pin, "pull");
return ioutil_writeToFile(path, pull, sizeof(char), strlen(pull));
}
le_result_t gpio_pullDown(char* pin) {
return gpio_setPull(pin, "down");
}
le_result_t gpio_pullUp(char* pin) {
return gpio_setPull(pin, "up");
}
le_result_t gpio_setInput(char* pin) {
return gpio_setDirection(pin, "in");
}
le_result_t gpio_setOutput(char* pin) {
return gpio_setDirection(pin, "out");
}
le_result_t gpio_setActiveState(char* pin, bool isActiveLow) {
// Any non zero value toggles the existing value
// so we must read the existing value first
char path[100];
int isActiveLowSet;
getGpioPath(path, pin, "active_low");
le_result_t readRes = ioutil_readIntFromFile(path, &isActiveLowSet);
le_result_t writeRes = LE_OK;
if (isActiveLow != isActiveLowSet) {
writeRes = ioutil_writeToFile(path, "1", sizeof(char), 1);
}
return readRes == LE_OK && writeRes == LE_OK ? LE_OK : LE_FAULT;
}
le_result_t gpio_isActive(char* pin, bool* isActive) {
char path[50];
getGpioPath(path, pin, "value");
int val;
le_result_t readRes = ioutil_readIntFromFile(path, &val);
*isActive = val;
return readRes;
}
le_result_t gpio_setValue(char* pin, bool state) {
char path[50];
getGpioPath(path, pin, "value");
char* strState = state ? "1" : "0";
return ioutil_writeToFile(path, &strState, sizeof(char), strlen(strState));
}
le_result_t gpio_setLow(char* pin) {
return gpio_setValue(pin, LOW);
}
le_result_t gpio_setHigh(char* pin) {
return gpio_setValue(pin, HIGH);
}
void* util_find(Functional* f) {
f->args.i = 0;
while (f->args.i < f->n) {
if (f->callback(&f->args)) {
return f->derefCallback(f->args.i, f->args.arr);
}
f->args.i++;
}
return NULL;
}
void util_listDir(const char* dir, char* dest, size_t size) {
struct dirent* de;
char toConcat[1024];
DIR* dr = opendir(dir);
if (dr == NULL)
return;
while ((de = readdir(dr)) != NULL) {
if (de->d_name[0] != '.') {
snprintf(toConcat, size, "%s,", de->d_name);
strncat(dest, toConcat, size);
}
}
closedir(dr);
}
/**
* Convert an integer baud rate to a speed_t
*/
speed_t fd_convertBaud(int baud) {
speed_t b;
switch (baud) {
case 50:
b = B50;
break;
case 75:
b = B75;
break;
case 110:
b = B110;
break;
case 134:
b = B134;
break;
case 150:
b = B150;
break;
case 200:
b = B200;
break;
case 300:
b = B300;
break;
case 600:
b = B600;
break;
case 1200:
b = B1200;
break;
case 1800:
b = B1800;
break;
case 2400:
b = B2400;
break;
case 9600:
b = B9600;
break;
case 19200:
b = B19200;
break;
case 38400:
b = B38400;
break;
case 57600:
b = B57600;
break;
case 115200:
b = B115200;
break;
case 230400:
b = B230400;
break;
case 921600:
b = B921600;
break;
default:
b = -2;
}
return b;
}
/**
* Open a serial connection on device
*
* Lifted from here
* https://github.com/WiringPi/WiringPi/blob/master/wiringPi/wiringSerial.c
*/
int fd_openSerial(const char* device, int baud) {
struct termios options;
speed_t binaryBaud = fd_convertBaud(baud);
int status, fd;
if ((fd = open(device, O_RDWR | O_NOCTTY | O_NDELAY | O_NONBLOCK)) == -1)
return -1;
fcntl(fd, F_SETFL, O_RDWR);
tcgetattr(fd, &options);
cfmakeraw(&options);
cfsetispeed(&options, binaryBaud);
cfsetospeed(&options, binaryBaud);
options.c_cflag |= (CLOCAL | CREAD);
options.c_cflag &= ~PARENB;
options.c_cflag &= ~CSTOPB;
options.c_cflag &= ~CSIZE;
options.c_cflag |= CS8;
options.c_lflag &= ~(ICANON | ECHO | ECHOE | ISIG);
options.c_oflag &= ~OPOST;
options.c_cc[VMIN] = 0;
options.c_cc[VTIME] = 10; // Ten seconds (100 deciseconds)
tcsetattr(fd, TCSANOW | TCSAFLUSH, &options);
ioctl(fd, TIOCMGET, &status);
status |= TIOCM_DTR;
status |= TIOCM_RTS;
ioctl(fd, TIOCMSET, &status);
usleep(10000); // 10mS
return fd;
}
int fd_puts(const int fd, const char* s) {
return write(fd, s, strlen(s));
}
int fd_getChar(const int fd) {
uint8_t x;
if (read(fd, &x, 1) != 1)
return -1;
return ((int)x) & 0xFF;
}
void fd_flush(const int fd) {
// tcflush(fd, TCIOFLUSH);
tcdrain(fd);
}
void fd_flushInput(const int fd) {
tcflush(fd, TCIFLUSH);
}
int fd_dataAvail(int fd, int* data) {
return ioctl(fd, FIONREAD, data);
}
double util_avgDouble(double* readings, int nReadings) {
double sum = 0;
for (int i = 0; i < nReadings; i++) {
sum += readings[i];
}
return sum / nReadings;
}
|