aboutsummaryrefslogtreecommitdiff
path: root/src/systemcmds/config/config.c
blob: 476015f3e3fff9583effce533589b1715ccbd94b (plain) (blame)
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
/****************************************************************************
 *
 *   Copyright (c) 2012, 2013 PX4 Development Team. All rights reserved.
 *   Author: Lorenz Meier <lm@inf.ethz.ch>
 *   Author: Julian Oes <joes@student.ethz.ch>
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions
 * are met:
 *
 * 1. Redistributions of source code must retain the above copyright
 *    notice, this list of conditions and the following disclaimer.
 * 2. Redistributions in binary form must reproduce the above copyright
 *    notice, this list of conditions and the following disclaimer in
 *    the documentation and/or other materials provided with the
 *    distribution.
 * 3. Neither the name PX4 nor the names of its contributors may be
 *    used to endorse or promote products derived from this software
 *    without specific prior written permission.
 *
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
 * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
 * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
 * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
 * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
 * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
 * POSSIBILITY OF SUCH DAMAGE.
 *
 ****************************************************************************/

/**
 * @file config.c
 * @author Lorenz Meier <lm@inf.ethz.ch>
 * @author Julian Oes <joes@student.ethz.ch>
 *
 * config tool.
 */

#include <nuttx/config.h>

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <stdbool.h>
#include <unistd.h>
#include <fcntl.h>
#include <sys/stat.h>

#include <arch/board/board.h>

#include <drivers/drv_gyro.h>
#include <drivers/drv_accel.h>
#include <drivers/drv_mag.h>
#include <drivers/drv_device.h>

#include "systemlib/systemlib.h"
#include "systemlib/err.h"

__EXPORT int config_main(int argc, char *argv[]);

static void	do_gyro(int argc, char *argv[]);
static void	do_accel(int argc, char *argv[]);
static void	do_mag(int argc, char *argv[]);
static void	do_device(int argc, char *argv[]);

int
config_main(int argc, char *argv[])
{
	if (argc >= 2) {
		if (!strcmp(argv[1], "gyro")) {
			do_gyro(argc - 2, argv + 2);
		} else if (!strcmp(argv[1], "accel")) {
			do_accel(argc - 2, argv + 2);
		} else if (!strcmp(argv[1], "mag")) {
			do_mag(argc - 2, argv + 2);
		} else {
			do_device(argc - 1, argv + 1);
		}
	}
	
	errx(1, "expected a command, try 'gyro', 'accel', 'mag'");
}

static void
do_device(int argc, char *argv[])
{
	if (argc < 2) {
		errx(1, "no device path provided and command provided.");
	}

	int	fd;
	int	ret;

	fd = open(argv[0], 0);

	if (fd < 0) {
		warn("%s", argv[0]);
		errx(1, "FATAL: no device found");

	} else {

		if (argc == 2 && !strcmp(argv[1], "block")) {

			/* disable the device publications */
			ret = ioctl(fd, DEVIOCSPUBBLOCK, 1);

			if (ret)
				errx(ret,"uORB publications could not be blocked");

		} else if (argc == 2 && !strcmp(argv[1], "unblock")) {

			/* enable the device publications */
			ret = ioctl(fd, DEVIOCSPUBBLOCK, 0);

			if (ret)
				errx(ret,"uORB publications could not be unblocked");

		} else {
			errx("no valid command: %s", argv[1]);
		}
	}

	exit(0);
}

static void
do_gyro(int argc, char *argv[])
{
	int	fd;
	int	ret;

	fd = open(GYRO_DEVICE_PATH, 0);

	if (fd < 0) {
		warn("%s", GYRO_DEVICE_PATH);
		errx(1, "FATAL: no gyro found");

	} else {

		if (argc == 2 && !strcmp(argv[0], "sampling")) {

			/* set the gyro internal sampling rate up to at least i Hz */
			ret = ioctl(fd, GYROIOCSSAMPLERATE, strtoul(argv[1], NULL, 0));

			if (ret)
				errx(ret,"sampling rate could not be set");

		} else if (argc == 2 && !strcmp(argv[0], "rate")) {

			/* set the driver to poll at i Hz */
			ret = ioctl(fd, SENSORIOCSPOLLRATE, strtoul(argv[1], NULL, 0));

			if (ret)
				errx(ret,"pollrate could not be set");

		} else if (argc == 2 && !strcmp(argv[0], "range")) {

			/* set the range to i dps */
			ret = ioctl(fd, GYROIOCSRANGE, strtoul(argv[1], NULL, 0));

			if (ret)
				errx(ret,"range could not be set");

		} else if (argc == 1 && !strcmp(argv[0], "check")) {
			ret = ioctl(fd, GYROIOCSELFTEST, 0);

			if (ret) {
				warnx("gyro self test FAILED! Check calibration:");
				struct gyro_scale scale;
				ret = ioctl(fd, GYROIOCGSCALE, (long unsigned int)&scale);
				warnx("offsets: X: % 9.6f Y: % 9.6f Z: % 9.6f", scale.x_offset, scale.y_offset, scale.z_offset);
				warnx("scale:   X: % 9.6f Y: % 9.6f Z: % 9.6f", scale.x_scale, scale.y_scale, scale.z_scale);
			} else {
				warnx("gyro calibration and self test OK");
			}

		} else {
			errx(1, "wrong or no arguments given. Try: \n\n\t'check' for the self test\n\t'sampling 500' to set sampling to 500 Hz\n\t'rate 500' to set publication rate to 500 Hz\n\t'range 2000' to set measurement range to 2000 dps\n\t");
		}

		int srate = ioctl(fd, GYROIOCGSAMPLERATE, 0);
		int prate = ioctl(fd, SENSORIOCGPOLLRATE, 0);
		int range = ioctl(fd, GYROIOCGRANGE, 0);

		warnx("gyro: \n\tsample rate:\t%d Hz\n\tread rate:\t%d Hz\n\trange:\t%d dps", srate, prate, range);

		close(fd);
	}

	exit(0);
}

static void
do_mag(int argc, char *argv[])
{
	int fd;
	int ret;

	fd = open(MAG_DEVICE_PATH, 0);

	if (fd < 0) {
		warn("%s", MAG_DEVICE_PATH);
		errx(1, "FATAL: no magnetometer found");

	} else {

		if (argc == 2 && !strcmp(argv[0], "sampling")) {

			/* set the mag internal sampling rate up to at least i Hz */
			ret = ioctl(fd, MAGIOCSSAMPLERATE, strtoul(argv[1], NULL, 0));

			if (ret)
				errx(ret,"sampling rate could not be set");

		} else if (argc == 2 && !strcmp(argv[0], "rate")) {

			/* set the driver to poll at i Hz */
			ret = ioctl(fd, SENSORIOCSPOLLRATE, strtoul(argv[1], NULL, 0));

			if (ret)
				errx(ret,"pollrate could not be set");

		} else if (argc == 2 && !strcmp(argv[0], "range")) {

			/* set the range to i G */
			ret = ioctl(fd, MAGIOCSRANGE, strtoul(argv[1], NULL, 0));

			if (ret)
				errx(ret,"range could not be set");

		} else if(argc == 1 && !strcmp(argv[0], "check")) {
			ret = ioctl(fd, MAGIOCSELFTEST, 0);

			if (ret) {
				warnx("mag self test FAILED! Check calibration:");
				struct mag_scale scale;
				ret = ioctl(fd, MAGIOCGSCALE, (long unsigned int)&scale);
				warnx("offsets: X: % 9.6f Y: % 9.6f Z: % 9.6f", scale.x_offset, scale.y_offset, scale.z_offset);
				warnx("scale:   X: % 9.6f Y: % 9.6f Z: % 9.6f", scale.x_scale, scale.y_scale, scale.z_scale);
			} else {
				warnx("mag calibration and self test OK");
			}

		} else {
			errx(1, "wrong or no arguments given. Try: \n\n\t'check' for the self test\n\t");
		}

		int srate = ioctl(fd, MAGIOCGSAMPLERATE, 0);
		int prate = ioctl(fd, SENSORIOCGPOLLRATE, 0);
		int range = ioctl(fd, MAGIOCGRANGE, 0);

		warnx("mag: \n\tsample rate:\t%d Hz\n\tread rate:\t%d Hz\n\trange:\t%d Ga", srate, prate, range);

		close(fd);
	}

	exit(0);
}

static void
do_accel(int argc, char *argv[])
{
	int	fd;
	int	ret;

	fd = open(ACCEL_DEVICE_PATH, 0);

	if (fd < 0) {
		warn("%s", ACCEL_DEVICE_PATH);
		errx(1, "FATAL: no accelerometer found");

	} else {

		if (argc == 2 && !strcmp(argv[0], "sampling")) {

			/* set the accel internal sampling rate up to at least i Hz */
			ret = ioctl(fd, ACCELIOCSSAMPLERATE, strtoul(argv[1], NULL, 0));

			if (ret)
				errx(ret,"sampling rate could not be set");

		} else if (argc == 2 && !strcmp(argv[0], "rate")) {

			/* set the driver to poll at i Hz */
			ret = ioctl(fd, SENSORIOCSPOLLRATE, strtoul(argv[1], NULL, 0));

			if (ret)
				errx(ret,"pollrate could not be set");

		} else if (argc == 2 && !strcmp(argv[0], "range")) {

			/* set the range to i G */
			ret = ioctl(fd, ACCELIOCSRANGE, strtoul(argv[1], NULL, 0));

			if (ret)
				errx(ret,"range could not be set");

		} else if(argc == 1 && !strcmp(argv[0], "check")) {
			ret = ioctl(fd, ACCELIOCSELFTEST, 0);

			if (ret) {
				warnx("accel self test FAILED! Check calibration:");
				struct accel_scale scale;
				ret = ioctl(fd, ACCELIOCGSCALE, (long unsigned int)&scale);
				warnx("offsets: X: % 9.6f Y: % 9.6f Z: % 9.6f", scale.x_offset, scale.y_offset, scale.z_offset);
				warnx("scale:   X: % 9.6f Y: % 9.6f Z: % 9.6f", scale.x_scale, scale.y_scale, scale.z_scale);
			} else {
				warnx("accel calibration and self test OK");
			}

		} else {
			errx(1,"no arguments given. Try: \n\n\t'sampling 500' to set sampling to 500 Hz\n\t'rate 500' to set publication rate to 500 Hz\n\t'range 4' to set measurement range to 4 G\n\t");
		}

		int srate = ioctl(fd, ACCELIOCGSAMPLERATE, 0);
		int prate = ioctl(fd, SENSORIOCGPOLLRATE, 0);
		int range = ioctl(fd, ACCELIOCGRANGE, 0);

		warnx("accel: \n\tsample rate:\t%d Hz\n\tread rate:\t%d Hz\n\trange:\t%d G", srate, prate, range);

		close(fd);
	}

	exit(0);
}