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_digital_trigger_enable_edges - set digital trigger edge detection

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 enables edge detection for a digital trigger on a subdevice. If the subdevice supports
       several digital triggers, the trigger_id selects one. The rising_edge_inputs and falling_edge_inputs
       parameters are bit fields that enable (1) or disable (0) rising and falling edge detection on a set of
       (up to) 32 inputs. The least-significant bit corresponds to the input specified by the base_input
       parameter, with subsequent bits corresponding to subsequent inputs.

       Successive calls to this function have an cumulative effect, which allows digital triggers to be set up
       for more than 32 inputs. There may also be a cumulative effect with calls to
       comedi_digital_trigger_enable_levels if the digital trigger supports a combination of edge and level
       triggering. Due to the cumulative effect, it may be necessary to call comedi_digital_trigger_disable to
       clear the old settings before reconfiguring the digital trigger inputs.

       A digital trigger may support edge detection, level detection, both at different times, or both at the
       same time. If it supports both but not at the same time, configuring edge triggers will disable any
       previous level triggers, or vice versa.

       This function is only useable on subdevices that provide support for the INSN_CONFIG_DIGITAL_TRIG
       configuration instruction, and only if the digital trigger supports edge detection.

Name

       comedi_digital_trigger_enable_edges - set digital trigger edge detection

Return Value

       0 on success, -1 on error.

Status

       alpha

Synopsis

#include<comedilib.h>intcomedi_digital_trigger_enable_edges(comedi_t*device,unsignedintsubdevice,unsignedinttrigger_id,unsignedintbase_input,unsignedintrising_edge_inputs,unsignedintfalling_edge_inputs);

See Also