aboutsummaryrefslogtreecommitdiff
path: root/recipes-demo/de10-nano-adxl-apps/files/watch_adxl.c
blob: b32d53cce7f7004e9734fede52c7df5af63d0fdb (plain)
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
#include <stdio.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <error.h>
#include <errno.h>
#include <limits.h>
#include <unistd.h>
#include <string.h>
#include "linux/input.h"

#define INPUT_DEV_NODE "/dev/input/by-path/platform-ffc04000.i2c-event"
#define SYSFS_DEVICE_DIR "/sys/devices/platform/soc/ffc04000.i2c/i2c-0/0-0053/"

#define EV_CODE_X (0)
#define EV_CODE_Y (1)
#define EV_CODE_Z (2)

#define LOOP_COUNT (100)

void write_sysfs_cntl_file(const char *dir_name, const char *file_name,
		const char *write_str) {

	char path[PATH_MAX];
	int path_length;
	int file_fd;
	int result;

	// create the path to the file we need to open
	path_length = snprintf(path, PATH_MAX, "%s/%s",	dir_name, file_name);
	if(path_length < 0)
		error(1, 0, "path output error");
	if(path_length >= PATH_MAX)
		error(1, 0, "path length overflow");

	// open the file
	file_fd = open(path, O_WRONLY | O_SYNC);
	if(file_fd < 0)
		error(1, errno, "could not open file '%s'", path);
	
	// write the string to the file
	result = write(file_fd, write_str, strlen(write_str));
	if(result < 0)
		error(1, errno, "writing to '%s'", path);
	if((size_t)(result) != strlen(write_str))
		error(1, errno, "buffer underflow writing '%s'", path);

	// close the file
	result = close(file_fd);
	if(result < 0)
		error(1, errno, "could not close file '%s'", path);
}

int main(void) {
	int event_dev_fd;
	const char *input_dev_node = INPUT_DEV_NODE;
	int result;
	int i;
	int loop;
	struct input_event the_event;
	struct input_absinfo the_absinfo;
	int abs_value_array[3] = {0};

	int last_value_x;
	int last_value_y;
	int last_value_z;
	int event_type_array[LOOP_COUNT];
	int event_code_array[LOOP_COUNT];
	int event_value_array[LOOP_COUNT];
	int x_abs_value_array[LOOP_COUNT];
	int y_abs_value_array[LOOP_COUNT];
	int z_abs_value_array[LOOP_COUNT];

	// enable adxl
	write_sysfs_cntl_file(SYSFS_DEVICE_DIR, "disable", "0");

	// set the sample rate to maximum
	write_sysfs_cntl_file(SYSFS_DEVICE_DIR, "rate", "15");

	// do not auto sleep
	write_sysfs_cntl_file(SYSFS_DEVICE_DIR, "autosleep", "0");
	
	// open the event device node
	event_dev_fd = open(input_dev_node, O_RDONLY | O_SYNC);
	if(event_dev_fd < 0)
		error(1, errno, "could not open file '%s'", input_dev_node);
	
	// read the current state of each axis
	printf("\n");
	for(i = 0 ; i < 3 ; i++ ) {
		result = ioctl (event_dev_fd, EVIOCGABS(i), &the_absinfo);
		if(result < 0)
			error(1, errno, "ioctl from '%s'", input_dev_node);
		
		switch(i) {
		case(EV_CODE_X) :
			printf("X-axis\n");
			break;
		case(EV_CODE_Y) :
			printf("Y-axis\n");
			break;
		case(EV_CODE_Z) :
			printf("Z-axis\n");
			break;
		default :
			printf("unknown-axis\n");
			break;
		}

		printf("%14s = %d\n", "value", the_absinfo.value);
		printf("%14s = %d\n", "minimum", the_absinfo.minimum);
		printf("%14s = %d\n", "maximum", the_absinfo.maximum);
		printf("%14s = %d\n", "fuzz", the_absinfo.fuzz);
		printf("%14s = %d\n", "flat", the_absinfo.flat);
		printf("%14s = %d\n", "resolution", the_absinfo.resolution);
		printf("\n");
	}
	
	fflush(stdout);

	// read the next LOOP_COUNT events
	for(loop = 0 ; loop < LOOP_COUNT ; loop++) {
		// read the next event
		result = read(event_dev_fd, &the_event, 
				sizeof(struct input_event));
		if(result < 0)
			error(1, errno, "reading %d from '%s'", 
					sizeof(struct input_event),
					input_dev_node);
		if(result != sizeof(struct input_event))
			error(1, 0, "did not read %d bytes from '%s'", 
					sizeof(struct input_event),
					input_dev_node);
		
		event_type_array[loop] = the_event.type;
		event_code_array[loop] = the_event.code;
		event_value_array[loop] = the_event.value;

		// read the current state of each axis
		for(i = 0 ; i < 3 ; i++ ) {
			result = ioctl (event_dev_fd, EVIOCGABS(i), 
					&the_absinfo);
			if(result < 0)
				error(1, errno, "ioctl from '%s'",
						input_dev_node);
				
			abs_value_array[i] = the_absinfo.value;
		}
		
		x_abs_value_array[loop] = abs_value_array[0];
		y_abs_value_array[loop] = abs_value_array[1];
		z_abs_value_array[loop] = abs_value_array[2];
	}

	// print the accumulated event data
	printf("Event capture results...\n");
	for(loop = 0 ; loop < LOOP_COUNT ; loop++) {

		// if the event is EV_ABS, then process it, otherwise ignore it
		if(event_type_array[loop] == EV_SYN) {

			printf("EV_SYN event\n");
			printf("%d,%d,%d\n",
					x_abs_value_array[loop],
					y_abs_value_array[loop],
					z_abs_value_array[loop]);
			
		} else if(event_type_array[loop] == EV_ABS) {

			// look for the codes that we expect
			switch(event_code_array[loop]) {
			case(EV_CODE_X) :
				printf("X-axis EV_ABS event = ");
				break;
			case(EV_CODE_Y) :
				printf("Y-axis EV_ABS event = ");
				break;
			case(EV_CODE_Z) :
				printf("Z-axis EV_ABS event = ");
				break;
			default :
				printf("unknown");
				break;
			}

			// output the value of the event
			printf("'%d'\n", event_value_array[loop]);

			printf("%d,%d,%d\n",
					x_abs_value_array[loop],
					y_abs_value_array[loop],
					z_abs_value_array[loop]);
		} else {
			printf("Unexpected event type '%d'\n", 
					event_type_array[loop]);
		}
	}

	fflush(stdout);
	
	// read current value for each axis so we can monitor changes by polling

	// x-axis
	result = ioctl (event_dev_fd, EVIOCGABS(0), 
			&the_absinfo);
	if(result < 0)
		error(1, errno, "ioctl from '%s'",
				input_dev_node);
	last_value_x = the_absinfo.value;

	// y-axis
	result = ioctl (event_dev_fd, EVIOCGABS(1), 
			&the_absinfo);
	if(result < 0)
		error(1, errno, "ioctl from '%s'",
				input_dev_node);
	last_value_y = the_absinfo.value;

	// z-axis
	result = ioctl (event_dev_fd, EVIOCGABS(2), 
			&the_absinfo);
	if(result < 0)
		error(1, errno, "ioctl from '%s'",
				input_dev_node);
	last_value_z = the_absinfo.value;

	// capture the next LOOP_COUNT transitions that occur on any axis
	for(loop = 0 ; loop < LOOP_COUNT ;) {

		// read the current state of each axis
		for(i = 0 ; i < 3 ; i++ ) {
			result = ioctl (event_dev_fd, EVIOCGABS(i), 
					&the_absinfo);
			if(result < 0)
				error(1, errno, "ioctl from '%s'",
						input_dev_node);
				
			abs_value_array[i] = the_absinfo.value;
		}
		
		// if any axis has changed, log the new values, otherwise skip
		if(		(abs_value_array[0] != last_value_x) ||
				(abs_value_array[1] != last_value_y) ||
				(abs_value_array[2] != last_value_z) ) {
			
			x_abs_value_array[loop] = abs_value_array[0];
			y_abs_value_array[loop] = abs_value_array[1];
			z_abs_value_array[loop] = abs_value_array[2];

			last_value_x = abs_value_array[0];
			last_value_y = abs_value_array[1];
			last_value_z = abs_value_array[2];

			loop++;
		}
	}

	// print the polling results
	printf("\n");
	printf("Polling results\n");
	for(loop = 0 ; loop < LOOP_COUNT ; loop++) {

		printf("%d,%d,%d\n",
				x_abs_value_array[loop],
				y_abs_value_array[loop],
				z_abs_value_array[loop]);
	}
	
	// close the device node
	result = close(event_dev_fd);
	if(result < 0)
		error(1, errno, "could not close file '%s'", input_dev_node);

	// disable adxl
	write_sysfs_cntl_file(SYSFS_DEVICE_DIR, "disable", "1");
}