logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

comedi_get_clock_source - get master clock for a subdevice

Authors

DavidSchleef <ds@schleef.org>
           Author.

       FrankMoriHess <fmhess@users.sourceforge.net>
           Author.

       HermanBruyninckx <Herman.Bruyninckx@mech.kuleuven.ac.be>
           Author.

       BerndPorr <tech@linux-usb-daq.co.uk>
           Author.

       IanAbbott <abbotti@mev.co.uk>
           Author.

       ÉricPiel <piel@delmic.com>
           Author.

Description

       This function queries the master clock for a subdevice, as set by comedi_set_clock_source. The currently
       configured master clock will be written to *clock. The possible values and their corresponding clocks are
       driver-dependant. The period of the clock in nanoseconds (or zero if it is unknown) will be written to
       *period_ns. If the subdevice does not support configuring its master clocks on a per-channel basis, then
       the channel parameter will be ignored.

       It is safe to pass NULL pointers as the clock or period_ns parameters. This function is only useable on
       subdevices that provide support for the INSN_CONFIG_GET_CLOCK_SRC configuration instruction.

Name

       comedi_get_clock_source - get master clock for a subdevice

Return Value

       0 on success, -1 on error.

Status

       alpha

Synopsis

#include<comedilib.h>intcomedi_get_clock_source(comedi_t*device,unsignedintsubdevice,unsignedintchannel,unsignedint*clock,unsignedint*period_ns);

See Also