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_levels - set digital trigger level 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 level detection for a digital trigger on a subdevice. If the subdevice supports
       several digital triggers, the trigger_id selects one. The high_level_inputs and low_level_inputs
       parameters are bit fields that enable (1) or disable (0) high and low level 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_edges 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 level triggers will disable any
       previous edge 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 level detection.

Name

       comedi_digital_trigger_enable_levels - set digital trigger level detection

Return Value

       0 on success, -1 on error.

Status

       alpha

Synopsis

#include<comedilib.h>intcomedi_digital_trigger_enable_levels(comedi_t*device,unsignedintsubdevice,unsignedinttrigger_id,unsignedintbase_input,unsignedinthigh_level_inputs,unsignedintlow_level_inputs);

See Also