doc/other.xml, reference.xml: Slowly varying inputs and comedi triggers
[comedilib.git] / doc / other.xml
1 <?xml version="1.0" encoding="utf-8"?>
2 <!DOCTYPE article PUBLIC "-//OASIS//DTD DocBook XML V4.4//EN"
3         "http://www.oasis-open.org/docbook/xml/4.4/docbookx.dtd" [
4 <!ENTITY % comedilib_entities SYSTEM "comedilib.ent">
5 %comedilib_entities;
6 ]>
7
8 <section id="acquisitionfunctions">
9 <title>
10 Acquisition and configuration functions
11 </title>
12
13 <para>
14 This Section gives an overview of all &comedi; functions with which
15 application programmers can implement their data acquisition. (With
16 <quote>acquisition</quote> we mean all possible kinds of interfacing
17 with the cards: input, output, configuration, streaming, etc.)
18 <xref linkend="comedireference"/> explains the function calls in full
19 detail.
20 </para>
21
22 <section id="singleacquisition">
23 <title>
24 Functions for single acquisition
25 </title>
26
27 <para>
28 The simplest form of using &comedi; is to get one single sample to or
29 from an interface card. This sections explains how to do such simple
30 <link linkend="dio">digital</link> and
31 <link linkend="singleanalog">analog</link> acquisitions.
32 </para>
33
34 <section id="dio">
35 <title>
36 Single digital acquisition
37 </title>
38
39 <para>
40 Many boards supported by &comedi; have digital input and output
41 channels; i.e., channels that can only produce a <literal>0</literal>
42 or a <literal>1</literal>.
43 Some boards allow the <emphasis>direction</emphasis> (input or output)
44 of each channel to be specified independently in software.
45 </para>
46
47 <para>
48 &comedi; groups digital channels into a
49 <emphasis>subdevice</emphasis>, which is a group of digital channels
50 that have the same characteristics.  For example, digital output lines
51 will be grouped into a digital
52 output subdevice, bidirectional digital lines will be grouped
53 into a digital I/O subdevice.  Thus, there can be multiple
54 digital subdevices on a particular board.
55 </para>
56
57 <para>
58 Individual bits on a digital I/O device can be read and written using
59 the functions <function><link linkend="func-ref-comedi-dio-read">comedi_dio_read</link></function>
60 and <function><link linkend="func-ref-comedi-dio-write">comedi_dio_write</link></function>:
61
62 <funcsynopsis><funcprototype>
63 <funcdef>int <function>comedi_dio_read</function></funcdef>
64 <paramdef>comedi_t *<parameter>device</parameter></paramdef>
65 <paramdef>unsigned int <parameter>subdevice</parameter></paramdef>
66 <paramdef>unsigned int <parameter>channel</parameter></paramdef>
67 <paramdef>unsigned int *<parameter>bit</parameter></paramdef>
68 </funcprototype></funcsynopsis>
69
70 <funcsynopsis><funcprototype>
71 <funcdef>int <function>comedi_dio_write</function></funcdef>
72 <paramdef>comedi_t *<parameter>device</parameter></paramdef>
73 <paramdef>unsigned int <parameter>subdevice</parameter></paramdef>
74 <paramdef>unsigned int <parameter>channel</parameter></paramdef>
75 <paramdef>unsigned int <parameter>bit</parameter></paramdef>
76 </funcprototype></funcsynopsis>
77
78 The <parameter class="function">device</parameter> parameter is a
79 <link linkend="ref-type-comedi-t">pointer</link>
80 to a successfully opened &comedi; device.
81 The <parameter class="function">subdevice</parameter> and
82 <parameter class="function">channel</parameter> parameters are positive
83 integers that indicate which subdevice and channel is used in the
84 acquisition. The integer <parameter class="function">bit</parameter>
85 contains the value of the acquired bit.
86 </para>
87 <para>
88 The direction of bidirectional lines can be configured using the function
89 <function><link linkend="func-ref-comedi-dio-config">comedi_dio_config</link></function>:
90
91 <funcsynopsis><funcprototype>
92 <funcdef>int <function>comedi_dio_config</function></funcdef>
93 <paramdef>comedi_t *<parameter>device</parameter></paramdef>
94 <paramdef>unsigned int <parameter>subdevice</parameter></paramdef>
95 <paramdef>unsigned int <parameter>channel</parameter></paramdef>
96 <paramdef>unsigned int <parameter>dir</parameter></paramdef>
97 </funcprototype></funcsynopsis>
98
99 The parameter <parameter class="function">dir</parameter> should be
100 either <constant>COMEDI_INPUT</constant> or
101 <constant>COMEDI_OUTPUT</constant>.
102 Many digital I/O subdevices group channels into blocks for
103 configuring direction.  Changing one channel in a block changes
104 the entire block.
105 </para>
106
107 <para>
108 Multiple channels can be read and written simultaneously using the
109 function <function><link linkend="func-ref-comedi-dio-bitfield2">comedi_dio_bitfield2</link></function>:
110
111 <funcsynopsis><funcprototype>
112 <funcdef>int <function>comedi_dio_bitfield2</function></funcdef>
113 <paramdef>comedi_t *<parameter>device</parameter></paramdef>
114 <paramdef>unsigned int <parameter>subdevice</parameter></paramdef>
115 <paramdef>unsigned int <parameter>write_mask</parameter></paramdef>
116 <paramdef>unsigned int *<parameter>bits</parameter></paramdef>
117 <paramdef>unsigned int <parameter>base_channel</parameter></paramdef>
118 </funcprototype></funcsynopsis>
119
120 Each channel from <parameter class="function">base_channel</parameter>
121 to <parameter class="function">base_channel</parameter> &plus;
122 <literal>31</literal> is assigned to a bit in the
123 <parameter class="function">write_mask</parameter> and
124 <parameter class="function">bits</parameter>
125 bitfield with bit 0 assigned to channel
126 <parameter class="function">base_channel</parameter>, bit 1 assigned to channel
127 <parameter class="function">base_channel</parameter> &plus;
128 <literal>1</literal>, etc.  If a bit in
129 <parameter class="function">write_mask</parameter> is set, the
130 corresponding bit in <parameter class="function">*bits</parameter> will
131 be written to the digital output line corresponding to the channel given by
132 <parameter class="function">base_channel</parameter> plus the bit number.
133 Each digital line is then read and placed into
134 <parameter class="function">*bits</parameter>.  The value
135 of bits in <parameter class="function">*bits</parameter> corresponding
136 to digital output lines is undefined and device-specific.  Channel
137 <parameter class="function">base_channel</parameter> &plus;
138 <literal>0</literal> is the least significant bit in the bitfield.  No
139 more than 32 channels at once can be accessed using this method.
140 <emphasis role="strong">Warning!</emphasis> Older versions of &comedi;
141 may ignore <parameter class="function">base_channel</parameter> and treat
142 it as <literal>0</literal> unless the subdevice has more than 32 channels.
143 </para>
144
145 <para>
146 The digital acquisition functions seem to be very simple, but, behind
147 the implementation screens of the &comedi; kernel module, they are
148 executed as special cases of the general
149 <link linkend="instructions">instruction</link> command.
150 </para>
151
152
153 </section>
154
155
156 <section id="singleanalog">
157 <title>
158 Single analog acquisition
159 </title>
160 <para>
161 Analog &comedi; channels can produce data values that are
162 <emphasis>samples</emphasis> from continuous analog signals.
163 These samples are integers with a significant content in
164 the range of, typically, 8, 10, 12, or 16 bits.
165 </para>
166 <para>
167 Single samples can be read from an analog channel using the function
168 <function><link linkend="func-ref-comedi-data-read">comedi_data_read</link></function>:
169
170 <funcsynopsis><funcprototype>
171 <funcdef>int <function>comedi_data_read</function></funcdef>
172 <paramdef>comedi_t *<parameter>device</parameter></paramdef>
173 <paramdef>unsigned int <parameter>subdevice</parameter></paramdef>
174 <paramdef>unsigned int <parameter>channel</parameter></paramdef>
175 <paramdef>unsigned int <parameter>range</parameter></paramdef>
176 <paramdef>unsigned int <parameter>aref</parameter></paramdef>
177 <paramdef>lsampl_t *<parameter>data</parameter></paramdef>
178 </funcprototype></funcsynopsis>
179
180 This reads one such data value from a &comedi; channel, and puts it in
181 the user-specified <parameter>data</parameter> buffer.
182 </para>
183
184 <para>
185 In the opposite direction, single samples can be written to an analog output
186 channel using the function
187 <function><link linkend="func-ref-comedi-data-write">comedi_data_write</link></function>:
188
189 <funcsynopsis><funcprototype>
190 <funcdef>int <function>comedi_data_write</function></funcdef>
191 <paramdef>comedi_t *<parameter>device</parameter></paramdef>
192 <paramdef>unsigned int <parameter>subdevice</parameter></paramdef>
193 <paramdef>unsigned int <parameter>channel</parameter></paramdef>
194 <paramdef>unsigned int <parameter>range</parameter></paramdef>
195 <paramdef>unsigned int <parameter>aref</parameter></paramdef>
196 <paramdef>lsampl_t <parameter>data</parameter></paramdef>
197 </funcprototype></funcsynopsis>
198 </para>
199
200 <para>
201 Raw data values read or written by the above functions
202 are unsigned integers less than, or equal to, the maximum sample value
203 of the channel, which can be determined using the function
204 <function><link linkend="func-ref-comedi-get-maxdata">comedi_get_maxdata</link></function>:
205
206 <funcsynopsis><funcprototype>
207 <funcdef>lsampl_t <function>comedi_get_maxdata</function></funcdef>
208 <paramdef>comedi_t *<parameter>device</parameter></paramdef>
209 <paramdef>unsigned int <parameter>subdevice</parameter></paramdef>
210 <paramdef>unsigned int <parameter>channel</parameter></paramdef>
211 </funcprototype></funcsynopsis>
212
213 Conversion between raw data values and uncalibrated physical units can
214 be performed by the functions
215 <function><link linkend="func-ref-comedi-to-phys">comedi_to_phys</link></function>
216 and <function><link linkend="func-ref-comedi-from-phys">comedi_from_phys</link></function>:
217
218 <funcsynopsis><funcprototype>
219 <funcdef>double <function>comedi_to_phys</function></funcdef>
220 <paramdef>lsampl_t <parameter>data</parameter></paramdef>
221 <paramdef>comedi_range *<parameter>range</parameter></paramdef>
222 <paramdef>lsampl_t <parameter>maxdata</parameter></paramdef>
223 </funcprototype></funcsynopsis>
224
225 <funcsynopsis><funcprototype>
226 <funcdef>lsampl_t <function>comedi_from_phys</function></funcdef>
227 <paramdef>double <parameter>data</parameter></paramdef>
228 <paramdef>comedi_range *<parameter>range</parameter></paramdef>
229 <paramdef>lsampl_t <parameter>maxdata</parameter></paramdef>
230 </funcprototype></funcsynopsis>
231 </para>
232
233 <para>
234 There are two data structures in these commands that are not fully
235 self-explanatory:
236 <itemizedlist>
237
238 <listitem>
239 <para>
240 <type><link linkend="ref-type-comedi-t">comedi_t</link></type>: this data structure
241 contains all information that a user program has to know about an
242 <emphasis>open</emphasis> &comedi; device. The programmer doesn't have
243 to fill in this data structure manually: it gets filled in by opening
244 the device.
245 </para>
246 </listitem>
247
248 <listitem>
249 <para>
250 <type><link linkend="ref-type-lsampl-t">lsampl_t</link></type>: this
251 <quote>data structure</quote> represents one single sample. On most
252 architectures, it's nothing more than a 32 bits value. Internally,
253 &comedi; does some conversion from raw sample data to
254 <quote>correct</quote> integers. This is called <quote>data
255 munging</quote>.
256 </para>
257 </listitem>
258
259 </itemizedlist>
260 </para>
261 <para>
262 Each single acquisition by, for example,
263 <function><link linkend="func-ref-comedi-data-read">comedi_data_read</link></function>
264 requires quite some overhead, because all the arguments of the
265 function call are checked. If multiple acquisitions must be done on
266 the same channel, this overhead can be avoided by using a function
267 that can read more than one sample,
268 <function><link linkend="func-ref-comedi-data-read-n">comedi_data_read_n</link></function>:
269
270 <funcsynopsis><funcprototype>
271 <funcdef>int <function>comedi_data_read_n</function></funcdef>
272 <paramdef>comedi_t *<parameter>device</parameter></paramdef>
273 <paramdef>unsigned int <parameter>subdevice</parameter></paramdef>
274 <paramdef>unsigned int <parameter>channel</parameter></paramdef>
275 <paramdef>unsigned int <parameter>range</parameter></paramdef>
276 <paramdef>unsigned int <parameter>aref</parameter></paramdef>
277 <paramdef>lsampl_t *<parameter>data</parameter></paramdef>
278 <paramdef>unsigned int <parameter>n</parameter></paramdef>
279 </funcprototype></funcsynopsis>
280
281 The number of samples, <parameter class="function">n</parameter>, is
282 limited by the &comedi; implementation (to a maximum of 100 samples),
283 because the call is blocking.
284 </para>
285 <para>
286 The start of the a single data acquisition can also be delayed by a specified
287 number of nano-seconds using the function
288 <function><link linkend="func-ref-comedi-data-read-delayed">comedi_data_read_delayed</link></function>:
289
290 <funcsynopsis><funcprototype>
291 <funcdef>int <function>comedi_data_read_delayed</function></funcdef>
292 <paramdef>comedi_t *<parameter>device</parameter></paramdef>
293 <paramdef>unsigned int <parameter>subdevice</parameter></paramdef>
294 <paramdef>unsigned int <parameter>channel</parameter></paramdef>
295 <paramdef>unsigned int <parameter>range</parameter></paramdef>
296 <paramdef>unsigned int <parameter>aref</parameter></paramdef>
297 <paramdef>lsampl_t *<parameter>data</parameter></paramdef>
298 <paramdef>unsigned int <parameter>nano_sec</parameter></paramdef>
299 </funcprototype></funcsynopsis>
300 </para>
301
302 <para>
303 All these read and write acquisition functions are implemented on top
304 of the generic <link linkend="instructions">instruction</link>
305 command.
306 </para>
307
308 </section>
309
310 </section>
311
312
313 <section id="instructions">
314 <title>
315 Instructions for multiple acquisitions
316 </title>
317 <para>
318 The <emphasis>instruction</emphasis> is one of the most generic,
319 overloaden and flexible functions in the &comedi; API. It is used to
320 execute a multiple of identical acquisitions on the same channel, but
321 also to perform a
322 <link linkend="instructionsconfiguration">configuration</link> of a
323 channel.
324 <anchor id="anchor.instruction.list"/>
325 An <emphasis>instruction list</emphasis> is a list of instructions,
326 possibly on different channels. Both instructions and instructions
327 lists are executed <emphasis>synchronously</emphasis>, i.e., while
328 <emphasis role="strong">blocking</emphasis> the calling process.
329 This is one of the limitations of instructions; the other one is that
330 they cannot code an acquisition involving timers or external events.
331 These limits are eliminated by the
332 <link linkend="commandsstreaming">command</link> acquisition
333 primitive.
334 </para>
335
336
337 <section id="comediinsnstructure">
338 <title>
339 The instruction data structure
340 </title>
341 <para>
342 All the information needed to execute an instruction is stored in the
343 <type><link linkend="ref-type-comedi-insn">comedi_insn</link></type>
344 data structure:
345 <programlisting>
346 typedef struct <anchor id="insn-data-structure"/>comedi_insn_struct {
347   <anchor id="insn-data-structure-insn"/>unsigned int insn;      // integer encoding the type of acquisition
348                           // (or configuration)
349   unsigned int n;         // number of elements in data array
350   <link linkend="ref-type-lsampl-t">lsampl_t</link> <anchor id="insn-data-structure-data"/>*data;         // pointer to data buffer
351   unsigned int subdev;    // subdevice
352   unsigned int <anchor id="insn-data-structure-chanspec"/><link linkend="ref-macro-CR-PACK">chanspec</link>; // encoded channel specification
353   unsigned int unused[3];
354 } comedi_insn;
355 </programlisting>
356 Because of the large flexibility of the instruction function, many
357 types of instruction do not need to fill in all fields, or attach
358 different meanings to the same field. But the current implementation
359 of &comedi; requires the
360 <link linkend="insn-data-structure-data">data</link> field to be at
361 least one byte long.
362 </para>
363
364 <para>
365 The <link linkend="insn-data-structure-insn">insn</link> flag of the
366 <link linkend="insn-data-structure">instruction data structure</link>
367 determines the type of acquisition executed in the corresponding
368 instruction:
369 <itemizedlist>
370
371 <listitem>
372 <para>
373 <constant>INSN_READ</constant>: the instruction executes a read on an
374 analog channel.
375 </para>
376 </listitem>
377
378 <listitem>
379 <para>
380 <constant>INSN_WRITE</constant>: the instruction executes a write on an
381 analog channel.
382 </para>
383 </listitem>
384
385 <listitem>
386 <para>
387 <constant>INSN_BITS</constant>: indicates that the instruction must
388 read or write values on multiple digital I/O channels.
389 </para>
390 </listitem>
391
392 <listitem>
393 <para>
394 <constant>INSN_GTOD</constant>: the instruction performs a
395 <quote>Get Time Of Day</quote> acquisition.
396 </para>
397 </listitem>
398
399 <listitem>
400 <para>
401 <constant>INSN_WAIT</constant>: the instruction blocks for a specified
402 number of nanoseconds.
403 </para>
404 </listitem>
405
406 </itemizedlist>
407 </para>
408
409 </section>
410
411
412 <section id="instructionexecution">
413 <title>
414 Instruction execution
415 </title>
416 <para>
417 Once an instruction data structure has been filled in, the
418 corresponding instruction is executed with the function
419 <function><link linkend="func-ref-comedi-do-insn">comedi_do_insn</link></function>:
420
421 <funcsynopsis><funcprototype>
422 <funcdef>int <function>comedi_do_insn</function></funcdef>
423 <paramdef>comedi_t *<parameter>device</parameter></paramdef>
424 <paramdef>comedi_insn *<parameter>instruction</parameter></paramdef>
425 </funcprototype></funcsynopsis>
426
427 Many &comedi; instructions are shortcuts that relieve the programmer
428 from explicitly filling in the data structure and calling the
429 <function><link linkend="func-ref-comedi-do-insn">comedi_do_insn</link></function>
430 function.
431 </para>
432 <para>
433 A list of instructions can be executed in one function call using the function
434 <function><link linkend="func-ref-comedi-do-insnlist">comedi_do_insnlist</link></function>:
435
436 <funcsynopsis><funcprototype>
437 <funcdef>int <function>comedi_do_insnlist</function></funcdef>
438 <paramdef>comedi_t *<parameter>device</parameter></paramdef>
439 <paramdef>comedi_insnlist *<parameter>list</parameter></paramdef>
440 </funcprototype></funcsynopsis>
441
442 The parameter <parameter class="function">list</parameter> is a pointer to a
443 <type><link linkend="insnlist-data-structure">comedi_insnlist</link></type>
444 data structure holding a pointer to an array of <type>comedi_insn</type>
445 and the number of instructions in the list:
446 <programlisting>
447 typedef struct <anchor id="insnlist-data-structure"/>comedi_insnlist_struct {
448   unsigned int n_insns;
449   comedi_insn *insns;
450 } comedi_insnlist;
451 </programlisting>
452 </para>
453 <para>
454 The number of instructions in the list is limited in the
455 implementation, because instructions are executed
456 <emphasis>synchronously</emphasis>, i.e., the call blocks until the
457 whole instruction (list) has finished.
458 </para>
459
460 </section>
461
462 </section>
463
464
465 <section id="instructionsconfiguration">
466 <title>
467 Instructions for configuration
468 </title>
469 <para>
470 <xref linkend="instructions"/> explains how instructions are used to do
471 <emphasis>acquisition</emphasis> on channels. This section explains
472 how they are used to <emphasis>configure</emphasis> a subdevice.
473 There are various sorts of configurations, and the
474 specific information for each different configuration possibility is
475 to be specified via the
476 <link linkend="insn-data-structure-data">data</link> buffer of the
477 <link linkend="insn-data-structure">instruction data structure</link>.
478 (So, the pointer to a
479 <type><link linkend="ref-type-lsampl-t">lsampl_t</link></type>
480 is misused as a pointer to an array with board-specific information.)
481 </para>
482
483 <para>
484 Using <constant>INSN_CONFIG</constant> as the
485 <link linkend="insn-data-structure-insn">insn</link> flag in an
486 <link linkend="insn-data-structure">instruction data structure</link>
487 indicates that the instruction will
488 <emphasis>not perform acquisition</emphasis> on a
489 channel, but will <emphasis>configure</emphasis> that channel.
490 The
491 <link linkend="ref-macro-CR-PACK">chanspec</link> field in the
492 <type><link linkend="insn-data-structure-chanspec">comedi_insn</link></type>
493 data structure, contains the channel to be configured.
494 The zeroth element of the data array
495 is always an id that specifies
496 what type of configuration instruction is being performed.  The
497 meaning of rest of the elements in the data array
498 depend on the configuration instruction id.
499 Some of the
500 possible ids are summarised in the table below, along with the
501 meanings of the data array elements for
502 each type of configuration instruction.
503 </para>
504
505 <informaltable>
506 <tgroup cols='4' align='left'>
507 <colspec colwidth='4*' />
508 <colspec colwidth='4*' />
509 <colspec colwidth='1*' />
510 <colspec colwidth='4*' />
511 <thead>
512 <row>
513 <entry>data[0]</entry>
514 <entry>Description</entry>
515 <entry>n (number of elements in data array)</entry>
516 <entry>Meanings of data[1], ..., data[n-1]</entry>
517 </row>
518 </thead>
519 <tbody>
520 <row>
521 <entry><constant>INSN_CONFIG_DIO_INPUT</constant></entry>
522 <entry>
523 Configure a DIO line as input.  It is easier to use
524 <function><link linkend="func-ref-comedi-dio-config">comedi_dio_config</link></function>
525 than to use this configuration instruction directly.
526 </entry>
527 <entry>1</entry>
528 <entry>
529 n/a
530 </entry>
531 </row>
532 <row>
533 <entry><constant>INSN_CONFIG_DIO_OUTPUT</constant></entry>
534 <entry>
535 Configure a DIO line as output.  It is easier to use
536 <function><link linkend="func-ref-comedi-dio-config">comedi_dio_config</link></function>
537 than to use this configuration instruction directly.
538 </entry>
539 <entry>1</entry>
540 <entry>
541 n/a
542 </entry>
543 </row>
544 <row>
545 <entry><constant>INSN_CONFIG_ALT_SOURCE</constant></entry>
546 <entry>
547 Select an alternate input source.  This instruction is used by calibration
548 programs to configure analog input channels
549 which can be redirected to read internal calibration
550 references.  You need to set the <constant>CR_ALT_SOURCE</constant> flag in the chanspec
551 when reading to actually read from the configured alternate input source.
552 If you are using <function>comedi_data_read</function>, then the channel parameter can be
553 bitwise or'd with the <constant>CR_ALT_SOURCE</constant> flag.
554 </entry>
555 <entry>2</entry>
556 <entry>
557 data[1]: alternate input source.
558 </entry>
559 </row>
560 <row>
561 <entry><constant>INSN_CONFIG_BLOCK_SIZE</constant></entry>
562 <entry>
563 Specify block size for asynchonous command data.
564 When performing streaming input, many boards accumulate
565 samples in internal fifos and transfer them to the host
566 computer in chunks.  Some drivers let you suggest a size in bytes for how big a
567 the chunks should be.  This lets you tune how often the host computer is
568 interrupted with a new chunk of data.
569 </entry>
570 <entry>2</entry>
571 <entry>
572 data[1]: The desired block size in bytes.  The actual configured block size is
573 writen back to data[1] after the instruction completes.  This instruction
574 acts purely as a query if the block size is set to zero.
575 </entry>
576 </row>
577 <row>
578 <entry><constant>INSN_CONFIG_DIO_QUERY</constant></entry>
579 <entry>
580 Queries the configuration of a DIO line to see if it is an input or output.
581 It is probably easier to use the comedilib function
582 <function><link linkend="func-ref-comedi-dio-get-config">comedi_dio_get_config</link></function>
583 than to use this instruction directly.
584 </entry>
585 <entry>2</entry>
586 <entry>
587 data[1]: The instruction sets this element to either
588 <constant>COMEDI_INPUT</constant> or <constant>COMEDI_OUTPUT</constant>.
589 </entry>
590 </row>
591 </tbody>
592 </tgroup>
593 </informaltable>
594
595 <para>
596 See the comedilib demo program <filename>demo/choose_clock.c</filename> for an example
597 of using a configuration instruction.
598 </para>
599
600 </section>
601
602
603 <section id="inttrigconfiguration">
604 <title>
605 Instruction for internal triggering
606 </title>
607 <para>
608 This special instruction has
609 <anchor id="insn-inttrig"/><constant>INSN_INTTRIG</constant> as the
610 <link linkend="insn-data-structure-insn">insn</link> flag in its
611 <link linkend="insn-data-structure">instruction data structure</link>.
612 Its execution causes an
613 <link linkend="trig-int-start-src">internal triggering event</link>. This
614 event can, for example, cause the device driver to start a conversion,
615 or to stop an ongoing acquisition. The exact meaning of the triggering
616 depends on the card and its particular driver.
617 </para>
618 <para>
619 The
620 <link linkend="insn-data-structure-data">data</link>[0] field of the
621 <constant>INSN_INTTRIG</constant> instruction is reserved for future use,
622 and should be set to <literal>0</literal>.
623 </para>
624
625 </section>
626
627
628 <section id="commandsstreaming">
629 <title>
630 Commands for streaming acquisition
631 </title>
632
633 <para>
634 The most powerful &comedi; acquisition primitive is the
635 <emphasis>command</emphasis>. It's powerful because, with one single
636 command, the programmer launches:
637 <itemizedlist>
638
639 <listitem>
640 <para>
641 a possibly infinite <emphasis>sequence of acquisitions</emphasis>,
642 </para>
643 </listitem>
644
645 <listitem>
646 <para>
647 accompanied with various <emphasis>callback</emphasis> functionalities
648 (DMA, interrupts, driver-specific callback functions),
649 </para>
650 </listitem>
651
652 <listitem>
653 <para>
654 for <emphasis>any number of channels</emphasis>,
655 </para>
656 </listitem>
657
658 <listitem>
659 <para>
660 with an <emphasis>arbitrary order</emphasis> of channels in each scan
661 (possibly even with repeated channels per scan),
662 </para>
663 </listitem>
664
665 <listitem>
666 <para>
667 and with various scan <emphasis>triggering sources</emphasis>,
668 external (i.e., hardware pulses) as well as internal (i.e., pulses
669 generated on the DAQ card itself, or generated by a
670 <link linkend="inttrigconfiguration">software trigger instruction</link>).
671 </para>
672 </listitem>
673
674 </itemizedlist>
675 This command functionality exists in the &comedi; API, because various
676 data acquisition devices have the capability to perform this kind of
677 complex acquisition, driven by either on-board or
678 off-board timers and triggers.
679 </para>
680
681 <para>
682 A command specifies a particular data
683 <link linkend="fig-acq-seq">acquisition sequence</link>, which
684 consists of a number of <emphasis>scans</emphasis>, and each scan is
685 comprised of a number of <emphasis>conversions</emphasis>, which
686 usually corresponds to a single A/D or D/A conversion. So, for
687 example, a scan could consist of sampling channels 1, 2 and 3 of a
688 particular device, and this scan should be repeated 1000 times, at
689 intervals of 1 millisecond apart.
690 </para>
691 <para>
692 The command function is complementary to the
693 <link linkend="instructionsconfiguration">configuration instruction</link>
694 function: each channel in the command's
695 <link linkend="command-data-struct-chanlist">chanlist</link>
696 should first be configured by an appropriate instruction.
697 </para>
698
699
700 <section id="executingcommand">
701 <title>
702 Executing a command
703 </title>
704
705 <para>
706 A command is executed by the function
707 <function><link linkend="func-ref-comedi-command">comedi_command</link></function>:
708
709 <funcsynopsis><funcprototype>
710 <funcdef>int <function>comedi_command</function></funcdef>
711 <paramdef>comedi_t *<parameter>device</parameter></paramdef>
712 <paramdef>comedi_cmd *<parameter>command</parameter></paramdef>
713 </funcprototype></funcsynopsis>
714
715 The following sections explain the meaning of the
716 <type><link linkend="ref-type-comedi-cmd">comedi_cmd</link></type> data structure.
717 Filling in this structure can be quite complicated, and
718 requires good knowledge about the exact functionalities of the DAQ
719 card.  So, before launching a command, the application programmer is
720 adviced to check whether this complex command data structure can be
721 successfully parsed. So, the typical sequence for executing a command is
722 to first send the command through
723 <function><link linkend="func-ref-comedi-command-test">comedi_command_test</link></function>
724 once or twice.  The test will check that the command is valid for the
725 particular device, and often makes some adjustments to the command
726 arguments, which can then be read back by the user to see the actual
727 values used.
728 </para>
729 <para>
730 A &comedi; program can find out on-line what the command capabilities
731 of a specific device are, by means of the
732 <function><link linkend="func-ref-comedi-get-cmd-src-mask">comedi_get_cmd_src_mask</link></function>
733 function.
734 </para>
735
736 </section>
737
738
739 <section id="comedicmdstructure">
740 <title>
741 The command data structure
742 </title>
743 <para>
744 The command executes according to the information about the requested
745 acquisition, which is stored in the
746 <type><link linkend="ref-type-comedi-cmd">comedi_cmd</link></type>
747 <anchor id="command-data-struct"/>data structure:
748 <programlisting>
749 typedef struct comedi_cmd_struct comedi_cmd;
750
751 struct comedi_cmd_struct {
752   unsigned int subdev;         // which subdevice to sample
753   unsigned int <anchor id="command-data-struct-flags"/>flags;          // encode some configuration possibilities
754                                // of the command execution; e.g.,
755                                // whether a callback routine is to be
756                                // called at the end of the command
757
758   unsigned int <anchor id="command-data-struct-start-src"/>start_src;      // event to make the acquisition start
759   unsigned int <anchor id="command-data-struct-start-arg"/>start_arg;      // parameters that influence this start
760
761   unsigned int <anchor id="command-data-struct-scan-begin-src"/>scan_begin_src; // event to make a particular scan start
762   unsigned int <anchor id="command-data-struct-scan-begin-arg"/>scan_begin_arg; // parameters that influence this start`
763
764   unsigned int <anchor id="command-data-struct-convert-src"/>convert_src;    // event to make a particular conversion start
765   unsigned int <anchor id="command-data-struct-convert-arg"/>convert_arg;    // parameters that influence this start
766
767   unsigned int <anchor id="command-data-struct-scan-end-src"/>scan_end_src;   // event to make a particular scan terminate
768   unsigned int <anchor id="command-data-struct-scan-end-arg"/>scan_end_arg;   // parameters that influence this termination
769
770   unsigned int <anchor id="command-data-struct-stop-src"/>stop_src;       // what make the acquisition terminate
771   unsigned int <anchor id="command-data-struct-stop-arg"/>stop_arg;       // parameters that influence this termination
772
773   unsigned int <anchor id="command-data-struct-chanlist"/>*chanlist;      // pointer to list of channels to be sampled
774   unsigned int <anchor id="command-data-struct-chanlist-len"/>chanlist_len;   // number of channels to be sampled
775
776   sampl_t *<anchor id="command-data-struct-data"/>data;               // address of buffer
777   unsigned int <anchor id="command-data-struct-data-len"/>data_len;       // number of samples to acquire
778 };
779 </programlisting>
780 The start and end of the whole command acquisition sequence, and the
781 start and end of each scan and of each conversion, is triggered by a
782 so-called <emphasis>event</emphasis>. More on these in
783 <xref linkend="comedicmdsources"/>.
784 </para>
785
786 <para>
787 The <parameter class="function">subdev</parameter> member of the
788 <type><link linkend="ref-type-comedi-cmd">comedi_cmd</link></type> structure is
789 the index of the subdevice the command is intended for.  The
790 <function><link linkend="func-ref-comedi-find-subdevice-by-type">comedi_find_subdevice_by_type</link></function>
791 function can be useful in discovering the index of your desired subdevice.
792 </para>
793
794 <para>
795 The <link linkend="command-data-struct-chanlist">chanlist</link>
796 member of the
797 <type><link linkend="ref-type-comedi-cmd">comedi_cmd</link></type> data
798 structure should point to an array whose number of elements is
799 specified by
800 <link linkend="command-data-struct-chanlist-len">chanlist_len</link>
801 (this will generally be the same as the
802 <link linkend="command-data-struct-scan-end-arg">scan_end_arg</link>).
803 The
804 <link linkend="command-data-struct-chanlist">chanlist</link>
805 specifies the sequence of channels and gains (and analog references)
806 that should be stepped through for each scan.  The elements of the
807 <link linkend="command-data-struct-chanlist">chanlist</link> array should be
808 initialized by <quote>packing</quote> the channel, range and reference
809 information together with the
810 <function><link linkend="ref-macro-CR-PACK">CR_PACK</link></function>
811 macro.
812 </para>
813
814 <para>
815 The <link linkend="command-data-struct-data">data</link> and
816 <link linkend="command-data-struct-data-len">data_len</link>
817 members can be safely ignored when issueing commands from a user-space
818 program.  They only have meaning when a command is sent from a
819 <emphasis role="strong">kernel</emphasis> module using the
820 <systemitem>kcomedilib</systemitem> interface, in which case they specify
821 the buffer where the driver should write/read its data to/from.
822 </para>
823
824 <para>
825 The final member of the
826 <type><link linkend="command-data-struct">comedi_cmd</link></type> structure is the
827 <link linkend="command-data-struct-flags">flags</link> field,
828 i.e., bits in a word that can be bitwise-or'd together. The meaning of
829 these bits are explained in a
830 <link linkend="source.flags.anchor">later section</link>.
831 </para>
832
833 </section>
834
835
836 <section id="comedicmdsources">
837 <title>
838 The command trigger events
839 <anchor id="source.trigger.anchor"/>
840 </title>
841 <para>
842 A command is a very versatile acquisition instruction, in the sense
843 that it offers lots of possibilities to let different hardware and
844 software sources determine when acquisitions are started, performed,
845 and stopped. More specifically, the command
846 <link linkend="command-data-struct">data structure</link>
847 has <emphasis>five</emphasis> types of events: start the
848 <link linkend="acquisitionterminology">acquisition</link>,
849 start a <link linkend="scan">scan</link>, start a
850 <link linkend="conversion">conversion</link>, stop a scan, and stop
851 the acquisition.  Each event can be given its own
852 <emphasis><link linkend="source.trigger.anchor">source</link></emphasis>
853 (the <parameter class="function">&hellip;_src</parameter> members in the
854 <type><link linkend="ref-type-comedi-cmd">comedi_cmd</link></type> data
855 structure). And each event source can have a corresponding
856 argument (the <parameter class="function">&hellip;_arg</parameter> members of
857 the <type><link linkend="ref-type-comedi-cmd">comedi_cmd</link></type> data
858 structure) whose meaning depends on the type of source trigger.
859 For example, to specify an external digital line <quote>3</quote> as a
860 source (in general, <emphasis>any</emphasis> of the five event
861 sources), you would use
862 <parameter>src</parameter>=<constant><link linkend="trig-ext">TRIG_EXT</link></constant>
863 and <parameter>arg</parameter>=<literal>3</literal>.
864 </para>
865 <para>
866 The following paragraphs discuss in somewhat more detail the trigger
867 event sources(<parameter class="function">&hellip;_src</parameter>), and the
868 corresponding arguments (<parameter class="function">&hellip;_arg</parameter>).
869 </para>
870 <para>
871 The start of an acquisition is controlled by the
872 <link linkend="command-data-struct-start-src">start_src</link> events.
873 The available options are:
874 <itemizedlist>
875
876 <listitem>
877 <para>
878 <anchor id="trig-now-start-src"/>
879 <constant>TRIG_NOW</constant>: the
880 <link linkend="command-data-struct-start-src">start_src</link>
881 event occurs
882 <link linkend="command-data-struct-start-arg">start_arg</link>
883 nanoseconds after the command is set up. Currently, only
884 <link linkend="command-data-struct-start-arg">start_arg</link>=<literal>0</literal> is
885 supported.
886 </para>
887 </listitem>
888
889 <listitem>
890 <para>
891 <anchor id="trig-follow-start-src"/>
892 <constant>TRIG_FOLLOW</constant>:  (For an output device.) The
893 <link linkend="command-data-struct-start-src">start_src</link>
894 event occurs when data is written to the buffer.
895 </para>
896 </listitem>
897
898 <listitem>
899 <para>
900 <anchor id="trig-ext-start-src"/>
901 <constant>TRIG_EXT</constant>: the start event occurs when an
902 external trigger signal occurs; e.g., a rising edge of a digital line.
903 <link linkend="command-data-struct-start-arg">start_arg</link>
904 chooses the particular digital line.
905 </para>
906 </listitem>
907
908 <listitem>
909 <para>
910 <anchor id="trig-int-start-src"/>
911 <constant>TRIG_INT</constant>: the start event occurs on a &comedi;
912 internal signal, which is typically caused by an
913 <constant><link linkend="insn-inttrig">INSN_INTTRIG</link></constant>
914 instruction.
915 </para>
916 </listitem>
917
918 </itemizedlist>
919 The start of the beginning of each
920 <link linkend="scan">scan</link> is controlled by the
921 <link linkend="command-data-struct-scan-begin-src">scan_begin</link> events.
922 The available options are:
923 <itemizedlist>
924
925 <listitem>
926 <para>
927 <anchor id="trig-timer-start-scan"/>
928 <constant>TRIG_TIMER</constant>:
929 <link linkend="command-data-struct-scan-begin-src">scan_begin</link>
930 events occur periodically.  The time between
931 <link linkend="command-data-struct-scan-begin-src">scan_begin</link>
932 events is
933 <link linkend="command-data-struct-convert-arg">convert_arg</link>
934 nanoseconds.
935 </para>
936 </listitem>
937
938 <listitem>
939 <para>
940 <anchor id="trig-follow-start-scan"/>
941 <constant>TRIG_FOLLOW</constant>:  The
942 <link linkend="command-data-struct-scan-begin-src">scan_begin</link>
943 event occurs immediately after a
944 <link linkend="command-data-struct-scan-end-src">scan_end</link>
945 event occurs.
946 </para>
947 </listitem>
948
949 <listitem>
950 <para>
951 <anchor id="trig-ext-start-scan"/>
952 <constant>TRIG_EXT</constant>: the
953 <link linkend="command-data-struct-scan-begin-src">scan_begin</link>
954 event occurs when an external trigger signal
955 occurs; e.g., a rising edge of a digital line.
956 <link linkend="command-data-struct-scan-begin-arg">scan_begin_arg</link>
957 chooses the particular digital line.
958 </para>
959 </listitem>
960
961 </itemizedlist>
962 The
963 <link linkend="command-data-struct-scan-begin-arg">scan_begin_arg</link>
964 used here may not be supported exactly by the device, but it
965 will be adjusted to the nearest supported value by
966 <function><link linkend="func-ref-comedi-command-test">comedi_command_test</link></function>.
967 </para>
968 <para>
969 The timing between each sample in a
970 <link linkend="scan">scan</link> is controlled by the
971 <link linkend="command-data-struct-convert-src">convert_&hellip;</link>
972 fields:
973 <itemizedlist>
974
975 <listitem>
976 <para>
977 <anchor id="convert-trig-timer"/>
978 <anchor id="trig-timer"/>
979 <constant>TRIG_TIMER</constant>: the conversion events occur periodically.
980 The time between convert events is
981 <link linkend="command-data-struct-convert-arg">convert_arg</link>
982 nanoseconds.
983 </para>
984 </listitem>
985
986 <listitem>
987 <para>
988 <anchor id="convert-trig-ext"/>
989 <anchor id="trig-ext"/>
990 <constant>TRIG_EXT</constant>: the conversion events occur when an
991 external trigger signal occurs, e.g., a rising edge of a digital line.
992 <link linkend="command-data-struct-convert-arg">convert_arg</link>
993 chooses the particular digital line.
994 </para>
995 </listitem>
996
997 <listitem>
998 <para>
999 <anchor id="convert-trig-now"/>
1000 <anchor id="trig-now"/>
1001 <constant>TRIG_NOW</constant>: All conversion events in a
1002 <link linkend="scan">scan</link> occur simultaneously.
1003 </para>
1004 </listitem>
1005
1006 </itemizedlist>
1007 The <emphasis>end</emphasis> of each scan is almost always specified
1008 using
1009 <constant><link linkend="trig-count">TRIG_COUNT</link></constant>,
1010 with the argument being the same as the number of channels in the
1011 <link linkend="command-data-struct-chanlist">chanlist</link>.  You
1012 could probably find a device that allows something else, but it would
1013 be strange.
1014 </para>
1015 <para>
1016 The end of an
1017 <link linkend="acquisitionterminology">acquisition</link> is
1018 controlled by
1019 <link linkend="command-data-struct-stop-src">stop_src</link>
1020 and <link linkend="command-data-struct-stop-arg">stop_arg</link>:
1021 <itemizedlist>
1022
1023 <listitem>
1024 <para>
1025 <anchor id="acquisition-end-trig-count"/>
1026 <anchor id="trig-count"/>
1027 <constant>TRIG_COUNT</constant>: stop the acquisition after
1028 <link linkend="command-data-struct-stop-arg">stop_arg</link>
1029 scans.
1030 </para>
1031 </listitem>
1032
1033 <listitem>
1034 <para>
1035 <anchor id="acquisition-end-trig-none"/>
1036 <anchor id="trig-none"/>
1037 <constant>TRIG_NONE</constant>: perform continuous acquisition,
1038 until stopped using
1039 <function><link linkend="func-ref-comedi-cancel">comedi_cancel</link></function>.
1040 </para>
1041 <para>
1042 Its argument is reserved and should be set to <literal>0</literal>.
1043 (<quote>Reserved</quote>
1044 means that unspecified things could happen if it is set to something
1045 else but <literal>0</literal>.)
1046 </para>
1047 </listitem>
1048
1049 </itemizedlist>
1050 There are a couple of less usual or not yet implemented events:
1051 <itemizedlist>
1052
1053 <listitem>
1054 <para>
1055 <anchor id="trig-time"/>
1056 <constant>TRIG_TIME</constant>:
1057 cause an event to occur at a particular time.
1058 </para>
1059 <para>
1060 (This event source is reserved for future use.)
1061 </para>
1062 </listitem>
1063
1064 <listitem>
1065 <para>
1066 <anchor id="trigother-event"/>
1067 <constant>TRIG_OTHER</constant>: driver specific event trigger.
1068 </para>
1069 <para>
1070 This event can be useful as any of the trigger sources.  Its exact
1071 meaning is driver specific, because it implements a feature that
1072 otherwise does not fit into the generic &comedi; command interface.
1073 Configuration of <constant>TRIG_OTHER</constant> features are done by
1074 <constant><link linkend="instructionsconfiguration">INSN_CONFIG</link></constant>
1075 instructions.
1076 </para>
1077 <para>
1078 The argument is reserved and should be set to <literal>0</literal>.
1079 </para>
1080 </listitem>
1081
1082 </itemizedlist>
1083 Not all event sources are applicable to all events.  Supported
1084 trigger sources for specific events depend significantly on your
1085 particular device, and even more on the current state of its device
1086 driver. The
1087 <function><link linkend="func-ref-comedi-get-cmd-src-mask">comedi_get_cmd_src_mask</link></function>
1088 function is useful for determining what trigger sources a subdevice
1089 supports.
1090 </para>
1091
1092 </section>
1093
1094
1095 <section id="comedicmdflags">
1096 <title>
1097 The command flags
1098 <anchor id="source.flags.anchor"/>
1099 </title>
1100
1101 <para>
1102 The
1103 <link linkend="command-data-struct-flags">flags</link> field in the
1104 <link linkend="ref-type-comedi-cmd">command data structure</link>
1105 is used to specify some <quote>behaviour</quote> of the acquisitions in
1106 a command.
1107 The meaning of the field is as follows:
1108 <itemizedlist>
1109
1110 <listitem>
1111 <para>
1112 <anchor id="trig-rt"/>
1113 <constant>TRIG_RT</constant>: ask the driver to use a
1114 <emphasis role="strong">hard real-time</emphasis> interrupt handler.
1115 This will reduce latency in handling interrupts from your data
1116 aquisition
1117 hardware.  It can be useful if you are sampling at high frequency, or
1118 if your hardware has a small onboard data buffer.  You must have a
1119 real-time kernel (<ulink url="http://www.rtai.org">RTAI</ulink> or
1120 <ulink url="http://www.rtlinux-gpl.org/">RTLinux/GPL</ulink>)
1121 and must compile &comedi; with real-time support, or this flag will do
1122 nothing.
1123 </para>
1124 </listitem>
1125
1126 <listitem>
1127 <para>
1128 <anchor id="trig-wake-eos"/>
1129 <constant>TRIG_WAKE_EOS</constant>:
1130 where <quote>EOS</quote> stands for <quote>End of Scan</quote>. Some
1131 drivers will change their behaviour when this flag is set, trying to
1132 transfer data at the end of every scan (instead of, for example,
1133 passing data in chunks whenever the board's hardware data buffer is
1134 half full).  This flag may degrade a driver's performance at high
1135 frequencies, because the end of a scan is, in general, a much more
1136 frequent event than the filling up of the data buffer.
1137 </para>
1138 </listitem>
1139
1140 <listitem>
1141 <para>
1142 <anchor id="trig-round-nearest"/>
1143 <constant>TRIG_ROUND_NEAREST</constant>:
1144 round to nearest supported timing period, the default.
1145 This flag (as well as the following three), indicates how timing
1146 arguments should be rounded if the hardware cannot achieve the exact
1147 timing requested.
1148 </para>
1149 </listitem>
1150
1151 <listitem>
1152 <para>
1153 <anchor id="trig-round-down"/>
1154 <constant>TRIG_ROUND_DOWN</constant>: round period down.
1155 </para>
1156 </listitem>
1157
1158 <listitem>
1159 <para>
1160 <anchor id="trig-round-up"/>
1161 <constant>TRIG_ROUND_UP</constant>: round period up.
1162 </para>
1163 </listitem>
1164
1165 <listitem>
1166 <para>
1167 <anchor id="trig-round-up-next"/>
1168 <constant>TRIG_ROUND_UP_NEXT</constant>:
1169 this one doesn't do anything, and I don't know what it was intended
1170 to do&hellip;?
1171 </para>
1172 </listitem>
1173
1174 <listitem>
1175 <para>
1176 <anchor id="trig-dither"/>
1177 <constant>TRIG_DITHER</constant>: enable dithering? Dithering is
1178 a software technique to smooth the influence of discretization
1179 <quote>noise</quote>.
1180 </para>
1181 </listitem>
1182
1183 <listitem>
1184 <para>
1185 <anchor id="trig-deglitch"/>
1186 <constant>TRIG_DEGLITCH</constant>: enable deglitching?
1187 Another <quote>noise</quote> smoothing technique.
1188 </para>
1189 </listitem>
1190
1191 <listitem>
1192 <para>
1193 <anchor id="trig-write"/>
1194 <constant>TRIG_WRITE</constant>:
1195 write to bidirectional devices.  Could be useful, in principle, if
1196 someone wrote a driver that supported commands for a digital I/O
1197 device that could do either input or output.
1198 </para>
1199 </listitem>
1200
1201 <listitem>
1202 <para>
1203 <anchor id="trig-bogus"/>
1204 <constant>TRIG_BOGUS</constant>: do the motions?
1205 </para>
1206 </listitem>
1207
1208 <listitem>
1209 <para>
1210 <anchor id="trig-other"/>
1211 <constant>TRIG_CONFIG</constant>: perform configuration, not triggering.
1212 This is a legacy of the deprecated
1213 <type><link linkend="ref-type-comedi-trig">comedi_trig_struct</link></type>
1214 data structure, and has no function at present.
1215 </para>
1216 </listitem>
1217
1218 </itemizedlist>
1219 </para>
1220
1221 </section>
1222
1223 <section>
1224 <title>
1225 Anti-aliasing
1226 </title>
1227 <para>
1228 If you wish to aquire accurate waveforms, it is vital that you use an
1229 anti-alias filter.  An anti-alias filter is a low-pass filter used to
1230 remove all    frequencies higher than the Nyquist frequency (half your sampling rate)
1231 from your analog input signal
1232 before you convert it to digital.  If you fail to filter your input signal,
1233 any high frequency components in the original analog signal will create
1234 artifacts in your recorded    digital waveform that cannot be corrected.
1235 </para>
1236 <para>
1237 For example, suppose you are sampling an analog input channel at a rate of
1238 1000 Hz.  If you were to apply a 900 Hz sine wave to the input, you
1239 would find that your
1240 sampling rate is not high enough to faithfully record the 900 Hz input,
1241 since it is above your Nyquist frequency of 500 Hz.  Instead, what you
1242 will see in your recorded digital waveform is a 100 Hz sine wave!  If you
1243 don't use an anti-alias filter, it is impossible to tell whether the 100
1244 Hz sine wave you see in your digital signal was really produced by a
1245 100 Hz input signal, or a 900 Hz signal aliased to 100 Hz, or a 1100 Hz
1246 signal, etc.
1247 </para>
1248 <para>
1249 In practice, the cutoff frequency for the anti-alias filter is usually
1250 set 10% to 20% below the Nyquist frequency due to fact that real filters
1251 do not have infinitely sharp cutoffs.
1252 </para>
1253 </section>
1254 </section>
1255
1256
1257 <section id="slowlyvarying">
1258 <title>
1259 Slowly-varying inputs
1260 </title>
1261
1262 <para>
1263 <emphasis role="strong">Note: The functions described here use an old
1264 feature that is no longer implemented by the &comedi;
1265 kernel layer. THEY WILL NOT WORK!</emphasis>
1266 </para>
1267
1268 <para>
1269 Sometimes, your input channels change slowly enough that
1270 you are able to average many successive input values to get a
1271 more accurate measurement of the actual value.  In general,
1272 the more samples you average, the better your estimate
1273 gets, roughly by a factor of <function>sqrt</function>(number_of_samples).
1274 Obviously, there are limitations to this:
1275 </para>
1276
1277 <itemizedlist>
1278
1279 <listitem>
1280 <para>
1281 you are ultimately limited by <quote>Spurious Free Dynamic
1282 Range</quote>. This SFDR is one of the popular measures to quantify how
1283 much noise a signal carries. If you take a Fourier transform of your
1284 signal, you will see several <quote>peaks</quote> in the transform: one
1285 or more of the fundamental harmonics of the measured signal, and lots
1286 of little <quote>peaks</quote> (called <quote>spurs</quote>) caused by
1287 noise. The SFDR is then the difference between the amplitude of the
1288 fundamental harmonic and of the largest spur (at frequencies below
1289 half of the Nyquist frequency of the DAQ sampler!).
1290 </para>
1291 </listitem>
1292
1293 <listitem>
1294 <para>
1295 you need to have <emphasis>some</emphasis> noise on the input channel,
1296 otherwise you will be averaging the same number <literal>N</literal>
1297 times. (Of course, this only holds if the noise is large enough to
1298 cause at least a one-bit discretization.)
1299 </para>
1300 </listitem>
1301
1302 <listitem>
1303 <para>
1304 the more noise you have, the greater your SFDR, but it
1305 takes many more samples to compensate for the increased
1306 noise.
1307 </para>
1308 </listitem>
1309
1310 <listitem>
1311 <para>
1312 if you feel the need to average samples for, for example, two seconds,
1313 your signal will need to be <emphasis>very</emphasis> slowly-varying,
1314 i.e., not varying more than your target uncertainty for the entire two
1315 seconds.
1316 </para>
1317 </listitem>
1318
1319 </itemizedlist>
1320
1321 <para>
1322 As you might have guessed, the &comedi; library has functions
1323 to help you in your quest to accurately measure slowly varying
1324 inputs:
1325
1326 <funcsynopsis><funcprototype>
1327 <funcdef>int <function>comedi_sv_init</function></funcdef>
1328 <paramdef>comedi_sv_t *<parameter>sv</parameter></paramdef>
1329 <paramdef>comedi_t *<parameter>device</parameter></paramdef>
1330 <paramdef>unsigned int <parameter>subdevice</parameter></paramdef>
1331 <paramdef>unsigned int <parameter>channel</parameter></paramdef>
1332 </funcprototype></funcsynopsis>
1333
1334 The above function <function><link linkend="func-ref-comedi-sv-init">comedi_sv_init</link></function> initializes the
1335 <type><link linkend="ref-type-comedi-sv-t">comedi_sv_t</link></type> data structure, used
1336 to do the averaging acquisition:
1337 <programlisting>
1338 typedef struct comedi_sv_struct {
1339   <link linkend="ref-type-comedi-t">comedi_t</link> *dev;
1340   unsigned int subdevice;
1341   unsigned int chan;
1342
1343   /* range policy */
1344   int range;
1345   int aref;
1346
1347   /* number of measurements to average (for analog inputs) */
1348   int n;
1349
1350   lsampl_t maxdata;
1351 } comedi_sv_t;
1352 </programlisting>
1353
1354 The actual acquisition is done with the function
1355 <function><link linkend="func-ref-comedi-sv-measure">comedi_sv_measure</link></function>:
1356
1357 <funcsynopsis><funcprototype>
1358 <funcdef>int <function>comedi_sv_measure</function></funcdef>
1359 <paramdef>comedi_sv_t *<parameter>sv</parameter></paramdef>
1360 <paramdef>double *<parameter>data</parameter></paramdef>
1361 </funcprototype></funcsynopsis>
1362
1363 The number of samples over which the function
1364 <function>comedi_sv_measure</function> averages is limited by the
1365 implementation (currently the limit is 100 samples).
1366 </para>
1367
1368 <para>
1369 One typical use for this function is the measurement of thermocouple
1370 voltages.
1371 And the &comedi; self-calibration utility also uses these functions.
1372 On some hardware, it is possible to tell it to measure an
1373 internal stable voltage reference, which is typically going
1374 to be very slowly varying; on the kilosecond time scale
1375 or more.  So, it is reasonable to measure millions of samples,
1376 to get a very accurate measurement of the A/D converter output
1377 value that corresponds to the voltage reference.  Sometimes,
1378 however, this is overkill, since there is no need to
1379 perform a part-per-million calibration to a standard that
1380 is only accurate to a part-per-thousand.
1381 </para>
1382
1383 </section>
1384
1385 <section id="experimentalfunctionality">
1386 <title>
1387 Experimental functionality
1388 </title>
1389
1390 <para>
1391 The following subsections document functionality that has not yet
1392 matured. Most of this functionality has even not been implemented yet
1393 in any single device driver. This information is included here, in
1394 order to stimulate discussion about their API, and to encourage
1395 pioneering implementations.
1396 </para>
1397
1398 <section id="digitalinputcombining">
1399 <title>
1400 Digital input combining machines
1401 </title>
1402
1403 <para>
1404 (<emphasis role="strong">Status: experimental (i.e., no driver implements
1405 this yet)</emphasis>)
1406 </para>
1407 <para>
1408 When one or several digital inputs are used to modify an output
1409 value, either an accumulator or a single digital line or bit,
1410 a bitfield structure is typically used in the &comedi; interface.
1411 The digital inputs have two properties, <quote>sensitive</quote> inputs
1412 and <quote>modifier</quote> inputs.  Edge transitions on sensitive
1413 inputs cause changes in the output signal, whereas modifier inputs
1414 change the effect of edge transitions on sensitive inputs.  Note that
1415 inputs can be both modifier inputs and sensitive inputs.
1416 </para>
1417
1418 <para>
1419 For simplification purposes, it is assumed that multiple digital
1420 inputs do not change simultaneously.
1421 </para>
1422
1423 <para>
1424 The combined state of the modifier inputs determine a modifier
1425 state.  For each combination of modifier state and sensitive
1426 input, there is a set of bits that determine the effect on the
1427 output value due to positive or negative transitions of the
1428 sensitive input.  For each transition direction, there are two
1429 bits defined as follows:
1430
1431 <variablelist spacing="compact">
1432  <varlistentry>
1433   <term>00</term>
1434   <listitem>transition is ignored.</listitem>
1435  </varlistentry>
1436  <varlistentry>
1437   <term>01</term>
1438   <listitem>accumulator is incremented, or output is set.</listitem>
1439  </varlistentry>
1440  <varlistentry>
1441   <term>10</term>
1442   <listitem>accumulator is decremented, or output is cleared.</listitem>
1443  </varlistentry>
1444  <varlistentry>
1445   <term>11</term>
1446   <listitem>reserved.</listitem>
1447  </varlistentry>
1448 </variablelist>
1449
1450 For example, a simple digital follower is specified by the bit
1451 pattern 01 10, because it sets the output on positive transitions
1452 of the input, and clears the output on negative transitions.  A
1453 digital inverter is similarily 10 01.  These systems have only
1454 one sensitive input.
1455 </para>
1456
1457 <para>
1458 As another example, a simple up counter, which increments on
1459 positive transitions of one input, is specified by 01 00.  This
1460 system has only one sensitive input.
1461 </para>
1462
1463 <para>
1464 When multiple digital inputs are used, the inputs are divided
1465 into two types, inputs which cause changes in the accumulator, and
1466 those that only modify the meaning of transitions on other inputs.
1467 Modifier inputs do not require bitfields, but there needs to be
1468 a bitfield of length 4*(2^(N-1)) for each edge sensitive input,
1469 where N is the total number of inputs.  Since N is usually 2 or
1470 3, with only one edge sensitive input, the scaling issues are
1471 not significant.
1472 </para>
1473
1474 </section>
1475
1476
1477 <section id="analogconversion">
1478 <title>
1479 Analog filtering configuration
1480 </title>
1481
1482 <para>
1483 <emphasis role="strong">(Status: design (i.e., no driver implements
1484 this yet).)</emphasis>
1485 </para>
1486
1487 <para>
1488 The <link linkend="insn-data-structure-insn">insn</link> field of the
1489 <link linkend="insn-data-structure">instruction data structure</link>
1490 has not been assigned yet.
1491 </para>
1492 <para>
1493 The <link linkend="insn-data-structure-chanspec">chanspec</link> field
1494 of the <link linkend="insn-data-structure">instruction data
1495 structure</link> is ignored.
1496 </para>
1497
1498 <para>
1499 Some devices have the capability to add white noise (dithering) to
1500 analog input measurement.  This additional noise can then be averaged
1501 out, to get a more accurate measurement of the input signal.  It
1502 should not be assumed that channels can be separately configured.
1503 A simple design can use 1 bit to turn this feature on/off.
1504 </para>
1505
1506 <para>
1507 Some devices have the capability of changing the glitch characteristics
1508 of analog output subsytems.  The default (off) case should be where
1509 the average settling time is lowest.  A simple design can use 1 bit
1510 to turn this feature on/off.
1511 </para>
1512
1513 <para>
1514 Some devices have a configurable analog filters as part of the analog
1515 input stage.  A simple design can use 1 bit to enable/disable the
1516 filter.  Default is disabled, i.e., the filter being bypassed, or if
1517 the choice is between two filters, the filter with the largest
1518 bandwidth.
1519 </para>
1520 </section>
1521
1522 <section id="waveformgeneration">
1523 <title>
1524 Analog Output Waveform Generation
1525 </title>
1526
1527 <para>
1528 <emphasis role="strong">(Status: design (i.e., no driver implements
1529 this yet).)</emphasis>
1530 </para>
1531 <para>
1532 The <link linkend="insn-data-structure-insn">insn</link> field of the
1533 <link linkend="insn-data-structure">instruction data structure</link>
1534 has not been assigned yet.
1535 </para>
1536 <para>
1537 The <link linkend="insn-data-structure-chanspec">chanspec</link> field
1538 of the <link linkend="insn-data-structure">instruction data
1539 structure</link> is ignored.
1540 </para>
1541
1542 <para>
1543 Some devices have the ability to cyclicly loop through samples kept in
1544 an on-board analog output FIFO.  This config should allow the user to
1545 enable/disable this mode.
1546 </para>
1547
1548 <para>
1549 This config should allow the user to configure the number of samples
1550 to loop through.  It may be necessary to configure the channels used.
1551 </para>
1552
1553 </section>
1554
1555 <section id="extendedtriggering">
1556 <title>
1557 Extended Triggering
1558 </title>
1559 <para>
1560 <emphasis role="strong">(Status: alpha.)</emphasis>
1561 </para>
1562
1563 <para>
1564 The <link linkend="insn-data-structure-insn">insn</link> field of the
1565 <link linkend="insn-data-structure">instruction data structure</link>
1566 has not been assigned yet.
1567 </para>
1568 <para>
1569 The <link linkend="insn-data-structure-chanspec">chanspec</link> field
1570 of the <link linkend="insn-data-structure">instruction data
1571 structure</link> is ignored.
1572 </para>
1573
1574 <para>
1575 This section covers common information for all extended
1576 triggering configuration, and doesn't describe a particular
1577 type of extended trigger.
1578 </para>
1579
1580 <para>
1581 Extended triggering is used to configure triggering engines that
1582 do not fit into commands.  In a typical programming sequence, the
1583 application will use
1584 <link linkend="instructionsconfiguration">configuration instructions</link>
1585 to configure an extended trigger, and a
1586 <link linkend="commandsstreaming">command</link>,
1587 specifying
1588 <constant><link linkend="trig-other">TRIG_OTHER</link></constant>
1589 as one of the trigger sources.
1590 </para>
1591
1592 <para>
1593 Extended trigger configuration should be designed in such a way
1594 that the user can probe for valid parameters, similar to how
1595 command testing works.  An extended trigger configuration instruction
1596 should not configure the hardware directly, rather, the configuration
1597 should be saved until the subsequent command is issued.  This
1598 allows more flexibility for future interface changes.
1599 </para>
1600
1601 <para>
1602 It has not been decided whether the configuration stage should return a
1603 token that is then used as the trigger argument in the command.
1604 Using tokens is one method to satisfy the problem that extended
1605 trigger configurations may have subtle compatiblity issues with
1606 other trigger sources/arguments that can only be determined at
1607 command test time.  Passing all stages of a command test should
1608 only be allowed with a properly configured extended trigger.
1609 </para>
1610
1611 <para>
1612 Extended triggers must use
1613 <link linkend="insn-data-structure-data">data[1]</link> as flags.  The
1614 upper 16 bits are reserved and used only for flags that are common to
1615 all extended triggers.  The lower 16 bits may be defined by the
1616 particular type of extended trigger.
1617 </para>
1618
1619 <para>
1620 Various types of extended triggers must use
1621 <link linkend="insn-data-structure-data">data[1]</link> to know which
1622 event the extended trigger will be assigned to in the command
1623 structure.  The possible values are an OR'd mask of the following:
1624 </para>
1625
1626 <itemizedlist>
1627   <listitem>
1628     <para>
1629 <constant>COMEDI_EV_START</constant>
1630     </para>
1631   </listitem>
1632   <listitem>
1633     <para>
1634 <constant>COMEDI_EV_SCAN_BEGIN</constant>
1635     </para>
1636   </listitem>
1637   <listitem>
1638     <para>
1639 <constant>COMEDI_EV_CONVERT</constant>
1640     </para>
1641   </listitem>
1642   <listitem>
1643     <para>
1644 <constant>COMEDI_EV_SCAN_END</constant>
1645     </para>
1646   </listitem>
1647   <listitem>
1648     <para>
1649 <constant>COMEDI_EV_STOP</constant>
1650     </para>
1651   </listitem>
1652 </itemizedlist>
1653
1654 </section>
1655
1656 <section id="analogtriggering">
1657 <title>
1658 Analog Triggering
1659 </title>
1660 <para>
1661 <emphasis role="strong">
1662 (Status: alpha. The <filename>ni_mio_common.c</filename> driver
1663 implements this feature.)
1664 </emphasis>
1665 </para>
1666
1667 <para>
1668 The <link linkend="insn-data-structure-insn">insn</link> field of the
1669 <link linkend="insn-data-structure">instruction data structure</link>
1670 has not been assigned yet.
1671 </para>
1672 <para>
1673 The <link linkend="insn-data-structure-chanspec">chanspec</link> field
1674 of the <link linkend="insn-data-structure">instruction data
1675 structure</link> is ignored.
1676 </para>
1677
1678 <para>
1679 The <link linkend="insn-data-structure-data">data</link> field
1680 of the <link linkend="insn-data-structure">instruction data
1681 structure</link> is used as follows:
1682 <variablelist spacing="compact">
1683  <varlistentry>
1684   <term>data[1]</term>
1685   <listitem>trigger and combining machine configuration.</listitem>
1686  </varlistentry>
1687  <varlistentry>
1688   <term>data[2]</term>
1689   <listitem>analog triggering signal chanspec.</listitem>
1690  </varlistentry>
1691  <varlistentry>
1692   <term>data[3]</term>
1693   <listitem>primary analog level.</listitem>
1694  </varlistentry>
1695  <varlistentry>
1696   <term>data[4]</term>
1697   <listitem>secondary analog level.</listitem>
1698  </varlistentry>
1699 </variablelist>
1700 </para>
1701 <para>
1702 Analog triggering is described by a digital combining machine that
1703 has two sensitive digital inputs.  The sensitive digital inputs are
1704 generated by configurable analog comparators.  The analog comparators
1705 generate a digital 1 when the analog triggering signal is greater
1706 than the comparator level.  The digital inputs are not modifier
1707 inputs.  Note, however, there is an effective modifier due to the
1708 restriction that the primary analog comparator level must be less
1709 than the secondary analog comparator level.
1710 </para>
1711
1712 <para>
1713 If only one analog comparator signal is used, the combining machine
1714 for the secondary input should be set to ignored, and the secondary
1715 analog level should be set to <literal>0</literal>.
1716 </para>
1717
1718 <para>
1719 The interpretation of the chanspec and voltage levels is device
1720 dependent, but should correspond to similar values of the analog
1721 input subdevice, if possible.
1722 </para>
1723
1724 <para>
1725 Notes:  Reading range information is not addressed.  This makes it
1726 difficult to convert comparator voltages to data values.
1727 </para>
1728
1729 <para>
1730 Possible extensions: A parameter that specifies the necessary time
1731 that the set condition has to be true before the trigger is generated.
1732 A parameter that specifies the necessary time that the reset condition
1733 has to be true before the state machine is reset.
1734 </para>
1735
1736 </section>
1737
1738 <section id="bitfieldmatching">
1739 <title>
1740 Bitfield Pattern Matching Extended Trigger
1741 </title>
1742 <para>
1743 <emphasis role="strong">
1744 (Status: design. No driver implements this feature yet.)
1745 </emphasis>
1746 </para>
1747
1748 <para>
1749 The <link linkend="insn-data-structure-insn">insn</link> field of the
1750 <link linkend="insn-data-structure">instruction data structure</link>
1751 has not been assigned yet.
1752 </para>
1753 <para>
1754 The <link linkend="insn-data-structure-chanspec">chanspec</link> field
1755 of the <link linkend="insn-data-structure">instruction data
1756 structure</link> is ignored.
1757 </para>
1758
1759 <para>
1760 The <link linkend="insn-data-structure-data">data</link> field
1761 of the <link linkend="insn-data-structure">instruction data
1762 structure</link> is used as follows:
1763 </para>
1764 <variablelist spacing="compact">
1765  <varlistentry>
1766   <term>data[1]</term>
1767   <listitem>trigger flags.</listitem>
1768  </varlistentry>
1769  <varlistentry>
1770   <term>data[2]</term>
1771   <listitem>mask.</listitem>
1772  </varlistentry>
1773  <varlistentry>
1774   <term>data[3]</term>
1775   <listitem>pattern.</listitem>
1776  </varlistentry>
1777 </variablelist>
1778
1779 <para>
1780 The pattern matching trigger issues a trigger when all of a specifed
1781 set of input lines match a specified pattern.  If the device allows,
1782 the input lines should correspond to the input lines of a digital input
1783 subdevice, however, this will necessarily be device dependent.  Each
1784 possible digital line that can be matched is assigned a bit in the
1785 mask and pattern.  A bit set in the mask indicates that the
1786 input line must match the corresponding bit in the pattern.
1787 A bit cleared in the mask indicates that the input line is ignored.
1788 </para>
1789
1790 <para>
1791 Notes: This only allows 32 bits in the pattern/mask, which may be
1792 too few.  Devices may support selecting different sets of lines from
1793 which to match a pattern.
1794 </para>
1795
1796 <para>
1797 Discovery: The number of bits can be discovered by setting the mask
1798 to all 1's.  The driver must modify this value and return
1799 <constant>-EAGAIN</constant>.
1800 </para>
1801
1802 </section>
1803
1804 <section id="countertimer">
1805 <title>
1806 Counter configuration
1807 </title>
1808 <para>
1809 <emphasis role="strong">
1810 (Status: design. No driver implements this feature yet.)
1811 </emphasis>
1812 </para>
1813
1814 <para>
1815 The <link linkend="insn-data-structure-insn">insn</link> field of the
1816 <link linkend="insn-data-structure">instruction data structure</link>
1817 has not been assigned yet.
1818 </para>
1819 <para>
1820 The <link linkend="insn-data-structure-chanspec">chanspec</link> field
1821 of the <link linkend="insn-data-structure">instruction data
1822 structure</link> is used to specify which counter to use. (I.e., the
1823 counter is a &comedi; channel.)
1824 </para>
1825
1826 <para>
1827 The <link linkend="insn-data-structure-data">data</link> field
1828 of the <link linkend="insn-data-structure">instruction data
1829 structure</link> is used as follows:
1830 </para>
1831 <variablelist spacing="compact">
1832  <varlistentry>
1833   <term>data[1]</term>
1834   <listitem>trigger configuration.</listitem>
1835  </varlistentry>
1836  <varlistentry>
1837   <term>data[2]</term>
1838   <listitem>primary input chanspec.</listitem>
1839  </varlistentry>
1840  <varlistentry>
1841   <term>data[3]</term>
1842   <listitem>primary combining machine configuration.</listitem>
1843  </varlistentry>
1844  <varlistentry>
1845   <term>data[4]</term>
1846   <listitem>secondary input chanspec.</listitem>
1847  </varlistentry>
1848  <varlistentry>
1849   <term>data[5]</term>
1850  <listitem>secondary combining machine configuration.</listitem>
1851  </varlistentry>
1852  <varlistentry>
1853   <term>data[6]</term>
1854   <listitem>latch configuration.</listitem>
1855  </varlistentry>
1856 </variablelist>
1857
1858 <para>
1859 Note that this configuration is only useful if the counting has to be
1860 done in <emphasis>software</emphasis>. Many cards offer configurable
1861 counters in hardware; e.g., general purpose timer cards can be
1862 configured to act as pulse generators, frequency counters, timers,
1863 encoders, etc.
1864 </para>
1865 <para>
1866 Counters can be operated either in synchronous mode (using
1867 <constant><link linkend="insn-read">INSN_READ</link></constant>)
1868 or asynchronous mode (using
1869 <link linkend="commandsstreaming">commands</link>), similar to analog
1870 input subdevices.
1871 The input signal for both modes is the accumulator.
1872 Commands on counter subdevices are almost always specified using
1873 <link linkend="command-data-struct-scan-begin-src">scan_begin_src</link>
1874 = <constant><link linkend="trigother-event">TRIG_OTHER</link></constant>,
1875 with the counter configuration also serving as the extended configuration for
1876 the scan begin source.
1877 </para>
1878
1879 <para>
1880 Counters are made up of an accumulator and a combining machine that
1881 determines when the accumulator should be incremented or decremented
1882 based on the values of the input signals.  The combining machine
1883 optionally determines when the accumulator should be latched and
1884 put into a buffer.  This feature is used in asynchronous mode.
1885 </para>
1886
1887 <para>
1888 Note: How to access multiple pieces of data acquired at each event?
1889 </para>
1890
1891 </section>
1892
1893 <section id="auxcounter">
1894 <title>
1895 One source plus auxiliary counter configuration
1896 </title>
1897 <para>
1898 <emphasis role="strong">
1899 (Status: design. No driver implements this feature yet.)
1900 </emphasis>
1901 </para>
1902
1903 <para>
1904 The <link linkend="insn-data-structure-insn">insn</link> field of the
1905 <link linkend="insn-data-structure">instruction data structure</link>
1906 has not been assigned yet.
1907 </para>
1908 <para>
1909 The <link linkend="insn-data-structure-chanspec">chanspec</link> field
1910 of the <link linkend="insn-data-structure">instruction data
1911 structure</link> is used to &hellip;
1912 </para>
1913
1914 <para>
1915 The <link linkend="insn-data-structure-data">data</link> field
1916 of the <link linkend="insn-data-structure">instruction data
1917 structure</link> is used as follows:
1918 </para>
1919
1920 <para>
1921 <variablelist spacing="compact">
1922  <varlistentry>
1923   <term>data[1]</term>
1924   <listitem>
1925 is flags, including the flags for the command triggering
1926 configuration.  If a command is not subsequently issued on the
1927 subdevice, the command triggering portion of the flags are ignored.
1928   </listitem>
1929  </varlistentry>
1930  <varlistentry>
1931   <term>data[2]</term>
1932   <listitem>
1933 determines the mode of operation.  The mode of operation
1934 is actually a bitfield that encodes what to do for various
1935 transitions of the source signals.
1936   </listitem>
1937  </varlistentry>
1938  <varlistentry>
1939   <term>data[3]</term>
1940   <term>data[4]</term>
1941   <listitem>
1942 determine the primary source for the counter, similar to the
1943 <link linkend="command-data-struct-scan-begin-src">&hellip;_src</link> and the
1944 <link linkend="command-data-struct-scan-begin-arg">&hellip;_arg</link> fields
1945 used in the
1946 <link linkend="command-data-struct">command data structure</link>.
1947   </listitem>
1948  </varlistentry>
1949 </variablelist>
1950 </para>
1951
1952 <para>
1953 Notes: How to specify which events cause a latch and push, and what
1954 should get latched?
1955 </para>
1956
1957 </section>
1958
1959 <section id="RTSI">
1960 <title>
1961 National instruments RTSI trigger bus
1962 </title>
1963 <para>
1964 A number of NI boards support the RTSI (Real Time System Integration) bus.
1965 It's primary use is to synchronize multiple DAQ cards.
1966 On PXI boards, the RTSI lines correspond to the PXI trigger lines 0 to 7.  PCI
1967 boards use cables to connect to their RTSI ports.
1968 The RTSI bus consists of 8 digital signal lines numbered 0 to 7 that are bi-directional.
1969 Each of these signal lines
1970 can be configured as an input or output, and the signal appearing on the output
1971 of each line can be configured to one of several internal board timing signals
1972 (although on older boards RTSI line 7 can only be used for the clock signal).
1973 The <systemitem>ni_pcimio</systemitem>, <systemitem>ni_atmio</systemitem>, and
1974 <systemitem>ni_mio_cs</systemitem> drivers expose the RTSI bus
1975 as a digital I/O subdevice (subdevice number 10).
1976 </para>
1977 <para>
1978 The functions <function>comedi_dio_config</function> and
1979 <function>comedi_dio_get_config</function> can be used on
1980 the RTSI subdevice to
1981 set/query the direction (input or output) of each of the RTSI lines individually.
1982 </para>
1983 <para>
1984 The subdevice also supports the
1985 <constant>INSN_CONFIG_SET_CLOCK_SRC</constant> and
1986 <constant>INSN_CONFIG_GET_CLOCK_SRC</constant> configuration
1987 instructions, which can be
1988 used to configure/query what source the board uses to synchronize its
1989 master clock to.  The various possibilities are defined in the <filename>comedi.h</filename>
1990 header file:
1991 </para>
1992 <informaltable>
1993 <tgroup cols='2' align='left'>
1994 <thead>
1995 <row>
1996 <entry>Clock Source</entry>
1997 <entry>Description</entry>
1998 </row>
1999 </thead>
2000 <tbody>
2001 <row>
2002 <entry><constant>NI_MIO_INTERNAL_CLOCK</constant></entry>
2003 <entry>
2004 Use the board's internal oscillator.
2005 </entry>
2006 </row>
2007 <row>
2008 <entry><constant>NI_MIO_RTSI_CLOCK</constant></entry>
2009 <entry>
2010 Use the RTSI line 7 as the master clock.  This source is
2011 only supported on pre-m-series boards.  The newer m-series boards
2012 use <function>NI_MIO_PLL_RTSI_CLOCK</function> instead.
2013 </entry>
2014 </row>
2015 <row>
2016 <entry><constant>NI_MIO_PLL_PXI_STAR_TRIGGER_CLOCK</constant></entry>
2017 <entry>
2018 Only available for newer m-series PXI boards.  Synchronizes the board's
2019 phased-locked loop (which runs at 80MHz) to the PXI star trigger
2020 line.
2021 </entry>
2022 </row>
2023 <row>
2024 <entry><constant>NI_MIO_PLL_PXI10_CLOCK</constant></entry>
2025 <entry>
2026 Only available for newer m-series PXI boards.
2027 Synchronizes the board's
2028 phased-locked loop (which runs at 80MHz) to the 10 MHz PXI backplane
2029 clock.
2030 </entry>
2031 </row>
2032 <row>
2033 <entry>
2034 <function>NI_MIO_PLL_RTSI_CLOCK<parameter>n</parameter></function>
2035 </entry>
2036 <entry>
2037 Only available for newer m-series boards.
2038 The function returns a clock source which will cause the board's
2039 phased-locked loop (which runs at 80MHz) to syncronize to the RTSI
2040 line specified in the function argument.
2041 </entry>
2042 </row>
2043 </tbody>
2044 </tgroup>
2045 </informaltable>
2046
2047 <para>
2048 For all clock sources except <constant>NI_MIO_INTERNAL_CLOCK</constant>
2049 and <constant>NI_MIO_PLL_PXI10_CLOCK</constant>,
2050 you should pass the period of the clock your are feeding to the board when
2051 using <constant>INSN_CONFIG_SET_CLOCK_SRC</constant>.
2052 </para>
2053 <para>
2054 Finally, the configuration instructions
2055 <constant>INSN_CONFIG_SET_ROUTING</constant> and
2056 <constant>INSN_CONFIG_GET_ROUTING</constant>
2057 can be used to select/query which internal signal
2058 will appear on a given RTSI output line.  The header file <filename>comedi.h</filename> defines
2059 the following signal sources which can be routed to an RTSI line:
2060 </para>
2061
2062 <informaltable>
2063 <tgroup cols='2' align='left'>
2064 <thead>
2065 <row>
2066 <entry>Signal Source</entry>
2067 <entry>Description</entry>
2068 </row>
2069 </thead>
2070 <tbody>
2071 <row>
2072 <entry><constant>NI_RTSI_OUTPUT_ADR_START1</constant></entry>
2073 <entry>
2074 ADR_START1, an analog input start signal.  See the NI's
2075 DAQ-STC Technical Reference Manual for more information.
2076 </entry>
2077 </row>
2078 <row>
2079 <entry><constant>NI_RTSI_OUTPUT_ADR_START2</constant></entry>
2080 <entry>
2081 ADR_START2, an analog input stop signal.  See the NI's
2082 DAQ-STC Technical Reference Manual for more information.
2083 </entry>
2084 </row>
2085 <row>
2086 <entry><constant>NI_RTSI_OUTPUT_SCLKG</constant></entry>
2087 <entry>
2088 SCLKG, a sample clock signal.  See the NI's
2089 DAQ-STC Technical Reference Manual for more information.
2090 </entry>
2091 </row>
2092 <row>
2093 <entry><constant>NI_RTSI_OUTPUT_DACUPDN</constant></entry>
2094 <entry>
2095 DACUPDN, a dac update signal.  See the NI's
2096 DAQ-STC Technical Reference Manual for more information.
2097 </entry>
2098 </row>
2099 <row>
2100 <entry><constant>NI_RTSI_OUTPUT_DA_START1</constant></entry>
2101 <entry>
2102 DA_START1, an analog output start signal.  See the NI's
2103 DAQ-STC Technical Reference Manual for more information.
2104 </entry>
2105 </row>
2106 <row>
2107 <entry><constant>NI_RTSI_OUTPUT_G_SRC0</constant></entry>
2108 <entry>
2109 G_SRC0, the source signal to general purpose counter 0.  See the NI's
2110 DAQ-STC Technical Reference Manual for more information.
2111 </entry>
2112 </row>
2113 <row>
2114 <entry><constant>NI_RTSI_OUTPUT_G_GATE0</constant></entry>
2115 <entry>
2116 G_GATE0, the gate signal to general purpose counter 0.  See the NI's
2117 DAQ-STC Technical Reference Manual for more information.
2118 </entry>
2119 </row>
2120 <row>
2121 <entry><constant>NI_RTSI_OUTPUT_RGOUT0</constant></entry>
2122 <entry>
2123 RGOUT0, the output signal of general purpose counter 0.  See the NI's
2124 DAQ-STC Technical Reference Manual for more information.
2125 </entry>
2126 </row>
2127 <row>
2128 <entry>
2129 <function>NI_RTSI_OUTPUT_RTSI_BRD<parameter>n</parameter></function>
2130 </entry>
2131 <entry>
2132 RTSI_BRD0 though RTSI_BRD3 are four internal signals which can
2133 have various other signals routed to them in turn.  Currently, comedi
2134 provides no way to configure the signals routed to the RTSI_BRD lines.
2135 See the NI's DAQ-STC Technical Reference Manual for more information.
2136 </entry>
2137 </row>
2138 <row>
2139 <entry><constant>NI_RTSI_OUTPUT_RTSI_OSC</constant></entry>
2140 <entry>
2141 The RTSI clock signal.  On pre-m-series boards, this signal is always
2142 routed to RTSI line 7, and cannot be routed to lines 0 through 6.  On
2143 m-series boards, any RTSI line can be configured to output the clock
2144 signal.
2145 </entry>
2146 </row>
2147 </tbody>
2148 </tgroup>
2149 </informaltable>
2150
2151 <para>
2152 The RTSI bus pins may be used as trigger inputs for many of the
2153 &comedi; trigger functions. To use the RTSI bus pins, set the source to be
2154 <constant>TRIG_EXT</constant> and the source argument using the return values
2155 from the <function>NI_EXT_RTSI<parameter>n</parameter></function> function (or similarly the
2156 <function>NI_EXT_PFI<parameter>n</parameter></function> function if you want
2157 to trigger from a PFI line).  The <constant>CR_EDGE</constant> and
2158 <constant>CR_INVERT</constant> flags may
2159 also be set on the trigger source argument to specify edge and
2160 falling edge/low level triggering.
2161
2162 </para>
2163 <para>
2164 An example to set up a device as a master is given below.
2165 </para>
2166
2167 <programlisting><![CDATA[
2168 void comediEnableMaster(comedi_t *dev){
2169         comedi_insn   configCmd;
2170         lsampl_t      configData[2];
2171         int           ret;
2172         unsigned int  d = 0;
2173         static const unsigned rtsi_subdev = 10;
2174         static const unsigned rtsi_clock_line = 7;
2175
2176         /* Route RTSI clock to line 7 (not needed on pre-m-series boards since their
2177            clock is always on line 7). */
2178         memset(&configCmd, 0, sizeof(configCmd));
2179         memset(&configData, 0, sizeof(configData));
2180         configCmd.insn = INSN_CONFIG;
2181         configCmd.subdev = rtsi_subdev;
2182         configCmd.chanspec = rtsi_clock_line;
2183         configCmd.n = 2;
2184         configCmd.data = configData;
2185         configCmd.data[0] = INSN_CONFIG_SET_ROUTING;
2186         configCmd.data[1] = NI_RTSI_OUTPUT_RTSI_OSC;
2187         ret = comedi_do_insn(dev, &configCmd);
2188         if(ret < 0){
2189                 comedi_perror("comedi_do_insn: INSN_CONFIG");
2190                 exit(1);
2191         }
2192         // Set clock RTSI line as output
2193         ret = comedi_dio_config(dev, rtsi_subdev, rtsi_clock_line, INSN_CONFIG_DIO_OUTPUT);
2194         if(ret < 0){
2195                 comedi_perror("comedi_dio_config");
2196                 exit(1);
2197         }
2198
2199         /* Set routing of the 3 main AI RTSI signals and their direction to output.
2200            We're reusing the already initialized configCmd instruction here since
2201            it's mostly the same. */
2202         configCmd.chanspec = 0;
2203         configCmd.data[1] =  NI_RTSI_OUTPUT_ADR_START1;
2204         ret = comedi_do_insn(dev, &configCmd);
2205         if(ret < 0){
2206                 comedi_perror("comedi_do_insn: INSN_CONFIG");
2207                 exit(1);
2208         }
2209         ret = comedi_dio_config(dev, rtsi_subdev, 0, INSN_CONFIG_DIO_OUTPUT);
2210         if(ret < 0){
2211                 comedi_perror("comedi_dio_config");
2212                 exit(1);
2213         }
2214
2215         configCmd.chanspec = 1;
2216         configCmd.data[1] =  NI_RTSI_OUTPUT_ADR_START2;
2217         ret = comedi_do_insn(dev, &configCmd);
2218         if(ret < 0){
2219                 comedi_perror("comedi_do_insn: INSN_CONFIG");
2220                 exit(1);
2221         }
2222         ret = comedi_dio_config(dev, rtsi_subdev, 1, INSN_CONFIG_DIO_OUTPUT);
2223         if(ret < 0){
2224                 comedi_perror("comedi_dio_config");
2225                 exit(1);
2226         }
2227
2228         configCmd.chanspec = 2;
2229         configCmd.data[1] =  NI_RTSI_OUTPUT_SCLKG;
2230         ret = comedi_do_insn(dev, &configCmd);
2231         if(ret < 0){
2232                 comedi_perror("comedi_do_insn: INSN_CONFIG");
2233                 exit(1);
2234         }
2235         ret = comedi_dio_config(dev, rtsi_subdev, 2, INSN_CONFIG_DIO_OUTPUT);
2236         if(ret < 0){
2237                 comedi_perror("comedi_dio_config");
2238                 exit(1);
2239         }
2240 }
2241 ]]></programlisting>
2242
2243 <para>
2244 An example to slave a m-series device from this master follows.  A pre-m-series
2245 device would need to use <constant>NI_MIO_RTSI_CLOCK</constant> for
2246 the clock source instead.  In
2247 your code, you may also wish to configure the master device to use the
2248 external clock source instead of using its internal clock directly (for
2249 best syncronization).
2250 </para>
2251 <programlisting><![CDATA[
2252 void comediEnableSlave(comedi_t *dev){
2253         comedi_insn   configCmd;
2254         lsampl_t      configData[3];
2255         int           ret;
2256         unsigned int  d = 0;;
2257         static const unsigned rtsi_subdev = 10;
2258         static const unsigned rtsi_clock_line = 7;
2259
2260         memset(&configCmd, 0, sizeof(configCmd));
2261         memset(&configData, 0, sizeof(configData));
2262         configCmd.insn = INSN_CONFIG;
2263         configCmd.subdev = rtsi_subdev;
2264         configCmd.chanspec = 0;
2265         configCmd.n = 3;
2266         configCmd.data = configData;
2267         configCmd.data[0] = INSN_CONFIG_SET_CLOCK_SRC;
2268         configCmd.data[1] = NI_MIO_PLL_RTSI_CLOCK(rtsi_clock_line);
2269         configCmd.data[2] = 100;        /* need to give it correct external clock period */
2270         ret = comedi_do_insn(dev, &configCmd);
2271         if(ret < 0){
2272                 comedi_perror("comedi_do_insn: INSN_CONFIG");
2273                 exit(1);
2274         }
2275         /* configure RTSI clock line as input */
2276         ret = comedi_dio_config(dev, rtsi_subdev, rtsi_clock_line, INSN_CONFIG_DIO_INPUT);
2277         if(ret < 0){
2278                 comedi_perror("comedi_dio_config");
2279                 exit(1);
2280         }
2281         /* Configure RTSI lines we are using for AI signals as inputs. */
2282         ret = comedi_dio_config(dev, rtsi_subdev, 0, INSN_CONFIG_DIO_INPUT);
2283         if(ret < 0){
2284                 comedi_perror("comedi_dio_config");
2285                 exit(1);
2286         }
2287         ret = comedi_dio_config(dev, rtsi_subdev, 1, INSN_CONFIG_DIO_INPUT);
2288         if(ret < 0){
2289                 comedi_perror("comedi_dio_config");
2290                 exit(1);
2291         }
2292         ret = comedi_dio_config(dev, rtsi_subdev, 2, INSN_CONFIG_DIO_INPUT);
2293         if(ret < 0){
2294                 comedi_perror("comedi_dio_config");
2295                 exit(1);
2296         }
2297 }
2298
2299 int comediSlaveStart(comedi_t *dev){
2300         comedi_cmd     cmd;
2301         unsigned int   nChannels = 8;
2302         double         sampleRate = 50000;
2303         unsigned int   chanList[8];
2304         int            i;
2305
2306         // Setup chan list
2307         for(i = 0; i < nChannels; i++){
2308                 chanList[i] = CR_PACK(i, 0, AREF_GROUND);
2309         }
2310         // Set up command
2311         memset(&cmd, 0, sizeof(cmd));
2312         ret = comedi_get_cmd_generic_timed(dev, subdevice, &cmd,
2313                 (int)(1e9/(nChannels * sampleRate)));
2314         if(ret<0){
2315                 printf("comedi_get_cmd_generic_timed failed\n");
2316                 return ret;
2317         }
2318         cmd.chanlist        = chanList;
2319         cmd.chanlist_len    = nChannels;
2320         cmd.scan_end_arg    = nChannels;
2321         cmd.start_src        = TRIG_EXT;
2322         cmd.start_arg        = CR_EDGE | NI_EXT_RTSI(0);
2323         cmd.convert_src    = TRIG_EXT;
2324         cmd.convert_arg    = CR_INVERT | CR_EDGE | NI_EXT_RTSI(2);
2325         cmd.stop_src        = TRIG_NONE;
2326
2327         ret = comedi_command(dev0, &cmd0);
2328         if(ret<0){
2329                 printf("comedi_command failed\n");
2330                 return ret;
2331         }
2332         return 0;
2333 }
2334 ]]></programlisting>
2335
2336
2337 </section>
2338
2339 </section>
2340
2341 </section>
2342