2000-10-19 06:28:27 +00:00
|
|
|
/*
|
|
|
|
* Instruction example
|
|
|
|
* Part of Comedilib
|
|
|
|
*
|
|
|
|
* Copyright (c) 1999,2000 David A. Schleef <ds@schleef.org>
|
|
|
|
*
|
|
|
|
* This file may be freely modified, distributed, and combined with
|
|
|
|
* other software, as long as proper attribution is given in the
|
|
|
|
* source code.
|
|
|
|
*/
|
2000-08-09 21:11:29 +00:00
|
|
|
/*
|
2007-01-03 21:14:53 +00:00
|
|
|
This example shows how to use instructions, i.e., comedi_insns.
|
2000-09-03 02:16:55 +00:00
|
|
|
|
|
|
|
Using instructions directly, as in this example, is not recommended
|
|
|
|
for the beginner. Use the higher-level functions such as
|
2001-03-01 21:57:00 +00:00
|
|
|
comedi_data_read(), comedi_data_write(), etc., as demonstrated
|
|
|
|
in the inp, outp, and dio examples. Then, if you need the
|
|
|
|
additional flexibility that using instructions directly
|
2000-09-03 02:16:55 +00:00
|
|
|
provides, study this example and the implementations of
|
|
|
|
comedi_data_read(), etc.
|
2000-08-09 21:11:29 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <comedilib.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <unistd.h>
|
2003-01-01 23:07:02 +00:00
|
|
|
#include <stdlib.h>
|
2000-08-09 21:11:29 +00:00
|
|
|
#include <errno.h>
|
2000-09-03 02:16:55 +00:00
|
|
|
#include <sys/time.h>
|
|
|
|
#include <unistd.h>
|
2000-10-19 06:28:27 +00:00
|
|
|
#include "examples.h"
|
2000-08-09 21:11:29 +00:00
|
|
|
|
2000-09-03 02:16:55 +00:00
|
|
|
/*
|
|
|
|
* This example does 3 instructions in one system call. It does
|
|
|
|
* a gettimeofday() call, then reads N_SAMPLES samples from an
|
|
|
|
* analog input, and the another gettimeofday() call.
|
2007-11-07 13:01:50 +00:00
|
|
|
*
|
|
|
|
* (Note: The gettimeofday() value is obtained using an INSN_GTOD
|
|
|
|
* instruction, which places the seconds value in data[0] and the
|
|
|
|
* microseconds in data[1], so the seconds value is limited to
|
|
|
|
* 32-bits even on 64-bit systems.)
|
2000-09-03 02:16:55 +00:00
|
|
|
*/
|
|
|
|
|
2002-05-11 06:43:30 +00:00
|
|
|
#define MAX_SAMPLES 128
|
2000-09-03 02:16:55 +00:00
|
|
|
|
2001-03-01 21:57:00 +00:00
|
|
|
comedi_t *device;
|
|
|
|
|
2000-08-09 21:11:29 +00:00
|
|
|
int main(int argc, char *argv[])
|
|
|
|
{
|
2000-09-03 02:16:55 +00:00
|
|
|
int ret,i;
|
|
|
|
comedi_insn insn[3];
|
2000-08-09 21:11:29 +00:00
|
|
|
comedi_insnlist il;
|
2007-11-07 13:01:50 +00:00
|
|
|
lsampl_t t1[2], t2[2];
|
2002-05-11 06:43:30 +00:00
|
|
|
lsampl_t data[MAX_SAMPLES];
|
2016-06-20 11:09:55 +01:00
|
|
|
long diffus;
|
2007-01-03 21:14:53 +00:00
|
|
|
struct parsed_options options;
|
2000-08-09 21:11:29 +00:00
|
|
|
|
2007-01-03 21:14:53 +00:00
|
|
|
init_parsed_options(&options);
|
|
|
|
options.n_scan = 10; /* override default n_scan value to something more suitable */
|
|
|
|
parse_options(&options, argc, argv);
|
|
|
|
if(options.n_scan > MAX_SAMPLES ){
|
2003-03-05 17:01:34 +00:00
|
|
|
fprintf( stderr, "Requested too many samples, reducing to %i\n", MAX_SAMPLES );
|
2007-01-03 21:14:53 +00:00
|
|
|
options.n_scan = MAX_SAMPLES;
|
2003-03-05 17:01:34 +00:00
|
|
|
}
|
2000-08-09 21:11:29 +00:00
|
|
|
|
2007-01-03 21:14:53 +00:00
|
|
|
device = comedi_open(options.filename);
|
2000-08-09 21:11:29 +00:00
|
|
|
if(!device){
|
2007-01-03 21:14:53 +00:00
|
|
|
comedi_perror(options.filename);
|
|
|
|
exit(-1);
|
2000-08-09 21:11:29 +00:00
|
|
|
}
|
|
|
|
|
2007-01-03 21:14:53 +00:00
|
|
|
if(options.verbose){
|
2000-08-09 21:11:29 +00:00
|
|
|
printf("measuring device=%s subdevice=%d channel=%d range=%d analog reference=%d\n",
|
2007-01-03 21:14:53 +00:00
|
|
|
options.filename, options.subdevice, options.channel, options.range, options.aref);
|
2000-08-09 21:11:29 +00:00
|
|
|
}
|
|
|
|
|
2000-09-03 02:16:55 +00:00
|
|
|
/* Set up a the "instruction list", which is just a pointer
|
|
|
|
* to the array of instructions and the number of instructions.
|
|
|
|
*/
|
|
|
|
il.n_insns=3;
|
|
|
|
il.insns=insn;
|
|
|
|
|
|
|
|
/* Instruction 0: perform a gettimeofday() */
|
|
|
|
insn[0].insn=INSN_GTOD;
|
|
|
|
insn[0].n=2;
|
2007-11-07 13:01:50 +00:00
|
|
|
insn[0].data=t1;
|
2000-08-09 21:11:29 +00:00
|
|
|
|
2000-09-03 02:16:55 +00:00
|
|
|
/* Instruction 1: do 10 analog input reads */
|
|
|
|
insn[1].insn=INSN_READ;
|
2007-01-03 21:14:53 +00:00
|
|
|
insn[1].n = options.n_scan;
|
2000-09-03 02:16:55 +00:00
|
|
|
insn[1].data=data;
|
2007-01-03 21:14:53 +00:00
|
|
|
insn[1].subdev = options.subdevice;
|
|
|
|
insn[1].chanspec=CR_PACK(options.channel, options.range, options.aref);
|
2000-08-09 21:11:29 +00:00
|
|
|
|
2000-09-03 02:16:55 +00:00
|
|
|
/* Instruction 2: perform a gettimeofday() */
|
|
|
|
insn[2].insn=INSN_GTOD;
|
|
|
|
insn[2].n=2;
|
2007-11-07 13:01:50 +00:00
|
|
|
insn[2].data=t2;
|
2000-09-03 02:16:55 +00:00
|
|
|
|
|
|
|
ret=comedi_do_insnlist(device,&il);
|
2000-08-09 21:11:29 +00:00
|
|
|
if(ret<0){
|
2007-01-03 21:14:53 +00:00
|
|
|
comedi_perror(options.filename);
|
|
|
|
exit(-1);
|
2000-08-09 21:11:29 +00:00
|
|
|
}
|
|
|
|
|
2016-06-20 11:09:55 +01:00
|
|
|
printf("initial time: %u.%06u\n", t1[0], t1[1]);
|
2007-01-03 21:14:53 +00:00
|
|
|
for(i = 0; i < options.n_scan; i++){
|
|
|
|
printf("%d\n", data[i]);
|
2000-09-03 02:16:55 +00:00
|
|
|
}
|
2016-06-20 11:09:55 +01:00
|
|
|
printf("final time: %u.%06u\n", t2[0], t2[1]);
|
2000-08-09 21:11:29 +00:00
|
|
|
|
2016-06-20 11:09:55 +01:00
|
|
|
if (t2[0] >= t1[0]) {
|
|
|
|
diffus = (long)(t2[0] - t1[0]);
|
|
|
|
} else {
|
|
|
|
diffus = -(long)(t1[0] - t2[0]);
|
|
|
|
}
|
|
|
|
diffus *= 1000000;
|
|
|
|
if (t2[1] >= t1[1]) {
|
|
|
|
diffus += (long)(t2[1] - t1[1]);
|
|
|
|
} else {
|
|
|
|
diffus -= (long)(t1[1] - t2[1]);
|
|
|
|
}
|
|
|
|
printf("difference (us): %ld\n", diffus);
|
2000-09-05 18:10:55 +00:00
|
|
|
|
2000-08-09 21:11:29 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|