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