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_hardcal_converter - get converter for hardware-calibrated 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

       The function comedi_get_hardcal_converter initializes the comedi_polynomial_t pointed to by converter so
       it can be passed to either comedi_to_physical, or comedi_from_physical. The result can be used to convert
       data from the specified subdevice, channel, and range. The direction parameter specifies whether
       converter will be passed to comedi_to_physical or comedi_from_physical.

       This function initializes the comedi_polynomial_t pointed to by converter as a simple linear function
       with no calibration information, appropriate for boards which do their gain/offset/nonlinearity
       corrections in hardware. If your board needs calibration to be performed in software by the host
       computer, use comedi_get_softcal_converter instead. A subdevice will advertise the fact that it depends
       on a software calibration with the SDF_SOFT_CALIBRATED subdevice flag.

       The result of this function will only depend on the channel parameter if either
       comedi_range_is_chan_specific or comedi_maxdata_is_chan_specific returns true for the specified
       subdevice.

Name

       comedi_get_hardcal_converter - get converter for hardware-calibrated subdevice

Return Value

       Returns 0 on success, -1 on failure.

Status

       alpha

Synopsis

#include<comedilib.h>intcomedi_get_hardcal_converter(comedi_t*device,unsignedsubdevice,unsignedchannel,unsignedrange,enumcomedi_conversion_directiondirection,comedi_polynomial_t*converter);

See Also