libm2k
Classes | Functions
AnalogOut

Contains the representation of the analogical output segment. More...

Collaboration diagram for AnalogOut:

Classes

class  libm2k::analog::M2kAnalogOut
 Controls the analogical output compound. More...
 

Functions

virtual std::vector< int > libm2k::analog::M2kAnalogOut::getOversamplingRatio ()=0
 Retrieve the global oversampling ratio. More...
 
virtual int libm2k::analog::M2kAnalogOut::getOversamplingRatio (unsigned int chn)=0
 Retrieve the oversampling ratio for the given channel. More...
 
virtual std::vector< int > libm2k::analog::M2kAnalogOut::setOversamplingRatio (std::vector< int > oversampling_ratio)=0
 Set the value of the oversampling ratio for each channel. More...
 
virtual int libm2k::analog::M2kAnalogOut::setOversamplingRatio (unsigned int chn, int oversampling_ratio)=0
 Set the oversampling ratio for the given channel. More...
 
virtual std::vector< double > libm2k::analog::M2kAnalogOut::getSampleRate ()=0
 Retrieve the sample rate of both DACs. More...
 
virtual double libm2k::analog::M2kAnalogOut::getSampleRate (unsigned int chn)=0
 Retrieve the sample rate for the given channel. More...
 
virtual std::vector< double > libm2k::analog::M2kAnalogOut::getAvailableSampleRates (unsigned int chn)=0
 getAvailableSampleRates More...
 
virtual std::vector< double > libm2k::analog::M2kAnalogOut::setSampleRate (std::vector< double > samplerates)=0
 Set the sample rate for both channels. More...
 
virtual double libm2k::analog::M2kAnalogOut::setSampleRate (unsigned int chn, double samplerate)=0
 Set the sample rate for the given channel. More...
 
virtual void libm2k::analog::M2kAnalogOut::setCyclic (bool en)=0
 Enable or disable the cyclic mode for all digital channels. More...
 
virtual void libm2k::analog::M2kAnalogOut::setCyclic (unsigned int chn, bool en)=0
 Enable or disable the cyclic mode for all digital channels. More...
 
virtual bool libm2k::analog::M2kAnalogOut::getCyclic (unsigned int chn)=0
 Retrieve the value of the cyclic mode. More...
 
virtual double libm2k::analog::M2kAnalogOut::getScalingFactor (unsigned int chn)=0
 Retrieve the scaling factor for the given channel. More...
 
virtual double libm2k::analog::M2kAnalogOut::getFilterCompensation (double samplerate)=0
 Retrieve the filter compensation for the given sample rate. More...
 
virtual void libm2k::analog::M2kAnalogOut::pushBytes (unsigned int chnIdx, double *data, unsigned int nb_samples)=0
 Send the samples to the given channel. More...
 
virtual void libm2k::analog::M2kAnalogOut::pushRawBytes (unsigned int chnIdx, short *data, unsigned int nb_samples)=0
 Send the samples to the given channel. More...
 
virtual void libm2k::analog::M2kAnalogOut::pushInterleaved (double *data, unsigned int nb_channels, unsigned int nb_samples)=0
 Send samples to all the channels. More...
 
virtual void libm2k::analog::M2kAnalogOut::pushRawInterleaved (short *data, unsigned int nb_channels, unsigned int nb_samples)=0
 Send samples to all the channels. More...
 
virtual void libm2k::analog::M2kAnalogOut::push (unsigned int chnIdx, std::vector< double > const &data)=0
 Send the samples to the given channel. More...
 
virtual void libm2k::analog::M2kAnalogOut::pushRaw (unsigned int chnIdx, std::vector< short > const &data)=0
 Send the samples to the given channel. More...
 
virtual void libm2k::analog::M2kAnalogOut::push (std::vector< std::vector< double >> const &data)=0
 Send samples to channels. More...
 
virtual void libm2k::analog::M2kAnalogOut::pushRaw (std::vector< std::vector< short >> const &data)=0
 Send samples to channels. More...
 
virtual void libm2k::analog::M2kAnalogOut::stop ()=0
 Stop all channels from sending the signals. More...
 
virtual void libm2k::analog::M2kAnalogOut::stop (unsigned int chn)=0
 Stop the given channels from sending the signals. More...
 
virtual void libm2k::analog::M2kAnalogOut::cancelBuffer ()=0
 Cancel all buffer operations of enabled channels. More...
 
virtual void libm2k::analog::M2kAnalogOut::cancelBuffer (unsigned int chn)=0
 Cancel all buffer operations of the given channel. More...
 
virtual void libm2k::analog::M2kAnalogOut::enableChannel (unsigned int chnIdx, bool enable)=0
 Enable or disable the given digital channel. More...
 
virtual bool libm2k::analog::M2kAnalogOut::isChannelEnabled (unsigned int chnIdx)=0
 Check if the given channel is enabled. More...
 
virtual bool libm2k::analog::M2kAnalogOut::isPushDone (unsigned int chnIdx) const =0
 Check if the generation of the signal (only for non-cyclic buffer) is done. More...
 
virtual void libm2k::analog::M2kAnalogOut::setKernelBuffersCount (unsigned int chnIdx, unsigned int count)=0
 Set the kernel buffers to a specific value. More...
 
virtual unsigned int libm2k::analog::M2kAnalogOut::getKernelBuffersCount (unsigned int chnIdx) const =0
 Get the number of kernel buffers. More...
 
virtual short libm2k::analog::M2kAnalogOut::convertVoltsToRaw (unsigned int channel, double voltage)=0
 Convert the volts value of a sample into raw. More...
 
virtual double libm2k::analog::M2kAnalogOut::convertRawToVolts (unsigned int channel, short raw)=0
 Convert the raw value of a sample into volts. More...
 
virtual struct IIO_OBJECTS libm2k::analog::M2kAnalogOut::getIioObjects ()=0
 Get access to IIO channels, buffers, devices and context. More...
 
virtual unsigned int libm2k::analog::M2kAnalogOut::getNbChannels ()=0
 Retrieve the number of analogical channels. More...
 
virtual std::string libm2k::analog::M2kAnalogOut::getChannelName (unsigned int channel)=0
 Get the channel name for each DAC channel. More...
 
virtual double libm2k::analog::M2kAnalogOut::getMaximumSamplerate (unsigned int chn_idx)=0
 Get the maximum samplerate for the DAC. More...
 

Detailed Description

Contains the representation of the analogical output segment.

Function Documentation

◆ cancelBuffer() [1/2]

virtual void libm2k::analog::M2kAnalogOut::cancelBuffer ( )
pure virtual

Cancel all buffer operations of enabled channels.

Note
Should be used to cancel an ongoing data write.

◆ cancelBuffer() [2/2]

virtual void libm2k::analog::M2kAnalogOut::cancelBuffer ( unsigned int  chn)
pure virtual

Cancel all buffer operations of the given channel.

Parameters
chnThe index corresponding to the channel
Note
Should be used to cancel an ongoing data write.

◆ convertRawToVolts()

virtual double libm2k::analog::M2kAnalogOut::convertRawToVolts ( unsigned int  channel,
short  raw 
)
pure virtual

Convert the raw value of a sample into volts.

Parameters
channelThe index corresponding to the channel
rawThe raw value of a sample
Returns
The value of a sample converted into volts

◆ convertVoltsToRaw()

virtual short libm2k::analog::M2kAnalogOut::convertVoltsToRaw ( unsigned int  channel,
double  voltage 
)
pure virtual

Convert the volts value of a sample into raw.

Parameters
channelThe index corresponding to the channel
voltageThe volts value of a sample
Returns
The value of a sample converted into raw

◆ enableChannel()

virtual void libm2k::analog::M2kAnalogOut::enableChannel ( unsigned int  chnIdx,
bool  enable 
)
pure virtual

Enable or disable the given digital channel.

Parameters
chnIdxThe index corresponding to the channel
enableA boolean value corresponding to the channel's state
Exceptions
EXC_OUT_OF_RANGENo such channel

◆ getAvailableSampleRates()

virtual std::vector<double> libm2k::analog::M2kAnalogOut::getAvailableSampleRates ( unsigned int  chn)
pure virtual

getAvailableSampleRates

Parameters
chnThe index corresponding to the required channel
Returns
The list of available samplerates for this device

◆ getChannelName()

virtual std::string libm2k::analog::M2kAnalogOut::getChannelName ( unsigned int  channel)
pure virtual

Get the channel name for each DAC channel.

Parameters
channel- unsigned int representing the index of the channel
Returns
std::string - name of the channel

◆ getCyclic()

virtual bool libm2k::analog::M2kAnalogOut::getCyclic ( unsigned int  chn)
pure virtual

Retrieve the value of the cyclic mode.

Parameters
chnThe index corresponding to the channel
Returns
A boolean value corresponding to the state of the cyclic mode

◆ getFilterCompensation()

virtual double libm2k::analog::M2kAnalogOut::getFilterCompensation ( double  samplerate)
pure virtual

Retrieve the filter compensation for the given sample rate.

Parameters
samplerateA double value representing the sample rate
Returns
The value of the filter compensation

◆ getIioObjects()

virtual struct IIO_OBJECTS libm2k::analog::M2kAnalogOut::getIioObjects ( )
pure virtual

Get access to IIO channels, buffers, devices and context.

Note
Can be used when debugging directly with libiio.
Returns
IIO_OBJECTS structure.

◆ getKernelBuffersCount()

virtual unsigned int libm2k::analog::M2kAnalogOut::getKernelBuffersCount ( unsigned int  chnIdx) const
pure virtual

Get the number of kernel buffers.

Parameters
chnIdxThe index corresponding to the channel
Returns
the number of previously set kernel buffers (saved in this session)

◆ getMaximumSamplerate()

virtual double libm2k::analog::M2kAnalogOut::getMaximumSamplerate ( unsigned int  chn_idx)
pure virtual

Get the maximum samplerate for the DAC.

Parameters
chn_idx- unsigned int representing the index of the channel
Returns
double - the value of the maximum samplerate

◆ getNbChannels()

virtual unsigned int libm2k::analog::M2kAnalogOut::getNbChannels ( )
pure virtual

Retrieve the number of analogical channels.

Returns
The number of channels

◆ getOversamplingRatio() [1/2]

virtual std::vector<int> libm2k::analog::M2kAnalogOut::getOversamplingRatio ( )
pure virtual

Retrieve the global oversampling ratio.

Returns
The value of the global oversampling ratio

◆ getOversamplingRatio() [2/2]

virtual int libm2k::analog::M2kAnalogOut::getOversamplingRatio ( unsigned int  chn)
pure virtual

Retrieve the oversampling ratio for the given channel.

Parameters
chnThe index corresponding to the channel
Returns
The oversampling ratio value

◆ getSampleRate() [1/2]

virtual std::vector<double> libm2k::analog::M2kAnalogOut::getSampleRate ( )
pure virtual

Retrieve the sample rate of both DACs.

Returns
A list containing the sample rates

◆ getSampleRate() [2/2]

virtual double libm2k::analog::M2kAnalogOut::getSampleRate ( unsigned int  chn)
pure virtual

Retrieve the sample rate for the given channel.

Parameters
chnThe index corresponding to the channel
Returns
The value of the sample rate

◆ getScalingFactor()

virtual double libm2k::analog::M2kAnalogOut::getScalingFactor ( unsigned int  chn)
pure virtual

Retrieve the scaling factor for the given channel.

Parameters
chnThe index corresponding to the channel
Returns
The value of the scaling factor
Exceptions
EXC_OUT_OF_RANGENo such channel

◆ isChannelEnabled()

virtual bool libm2k::analog::M2kAnalogOut::isChannelEnabled ( unsigned int  chnIdx)
pure virtual

Check if the given channel is enabled.

Parameters
chnIdxThe index corresponding to the channel
Returns
A boolean value corresponding to the state of the channel
Exceptions
EXC_OUT_OF_RANGENo such channel

◆ isPushDone()

virtual bool libm2k::analog::M2kAnalogOut::isPushDone ( unsigned int  chnIdx) const
pure virtual

Check if the generation of the signal (only for non-cyclic buffer) is done.

Parameters
chnIdxThe index corresponding to the channel
Returns
True if the push process is done, false otherwise
Note
This function takes the number of kernel buffers into consideration.
If a new session is started without unplugging the board and the number of kernel buffers was modified in the previous session
(default value = 4) a DAC calibration must be performed before calling isPushDone in order to compute the
current number of kernel buffers or call again the function setKernelBuffersCount.
Available only in firmware versions newer than 0.23.

◆ push() [1/2]

virtual void libm2k::analog::M2kAnalogOut::push ( unsigned int  chnIdx,
std::vector< double > const &  data 
)
pure virtual

Send the samples to the given channel.

Parameters
chnIdxThe index corresponding to the channel
dataA list of doubles containing all samples
Note
Streaming data is possible - required multiple kernel buffers
The given channel won't be synchronized with the other channel
Due to a hardware limitation, the number of samples per channel must be a multiple of 4 and greater than 16 (non-cyclic buffers) or 1024 (cyclic buffers)
The samples in the buffer can be repeated until the buffer reaches the size requirements
Exceptions
EXC_OUT_OF_RANGENo such channel

◆ push() [2/2]

virtual void libm2k::analog::M2kAnalogOut::push ( std::vector< std::vector< double >> const &  data)
pure virtual

Send samples to channels.

Parameters
dataA list containing lists of samples
Note
The index of each list of samples represents the channel's index
Streaming data is possible - required multiple kernel buffers
The given channel won't be synchronized with the other channel
Due to a hardware limitation, the number of samples per channel must be a multiple of 4 and greater than 16 (non-cyclic buffers) or 1024 (cyclic buffers)
The samples in the buffer can be repeated until the buffer reaches the size requirements

◆ pushBytes()

virtual void libm2k::analog::M2kAnalogOut::pushBytes ( unsigned int  chnIdx,
double *  data,
unsigned int  nb_samples 
)
pure virtual

Send the samples to the given channel.

Parameters
chnIdxThe index corresponding to the channel
dataA pointer to the samples
nb_samplesthe number of samples
Note
Streaming data is possible - required multiple kernel buffers
The given channel won't be synchronized with the other channel
Due to a hardware limitation, the number of samples per channel must be a multiple of 4 and greater than 16 (non-cyclic buffers) or 1024 (cyclic buffers)
The samples in the buffer can be repeated until the buffer reaches the size requirements
Exceptions
EXC_OUT_OF_RANGENo such channel

◆ pushInterleaved()

virtual void libm2k::analog::M2kAnalogOut::pushInterleaved ( double *  data,
unsigned int  nb_channels,
unsigned int  nb_samples 
)
pure virtual

Send samples to all the channels.

Parameters
dataA pointer to the interleaved data
nb_channelsthe number of channels on which we want to push
nb_samplesthe number of samples total (samples_per_channel * channels)
Note
Make sure the samples are interleaved
Streaming data is possible - required multiple kernel buffers
The given channel will be synchronized with the other channel
Due to a hardware limitation, the number of samples per channel must be a multiple of 4 and greater than 16 (non-cyclic buffers) or 1024 (cyclic buffers)
The samples in the buffer can be repeated until the buffer reaches the size requirements

◆ pushRaw() [1/2]

virtual void libm2k::analog::M2kAnalogOut::pushRaw ( unsigned int  chnIdx,
std::vector< short > const &  data 
)
pure virtual

Send the samples to the given channel.

Parameters
chnIdxThe index corresponding to the channel
dataA list of shorts containing all samples
Note
Streaming data is possible - required multiple kernel buffers
The given channel won't be synchronized with the other channel
Due to a hardware limitation, the number of samples per channel must be a multiple of 4 and greater than 16 (non-cyclic buffers) or 1024 (cyclic buffers)
The samples in the buffer can be repeated until the buffer reaches the size requirements
Exceptions
EXC_OUT_OF_RANGENo such channel

◆ pushRaw() [2/2]

virtual void libm2k::analog::M2kAnalogOut::pushRaw ( std::vector< std::vector< short >> const &  data)
pure virtual

Send samples to channels.

Parameters
dataA list containing lists of samples
Note
The index of each list of samples represents the channel's index
Streaming data is possible - required multiple kernel buffers
The given channel won't be synchronized with the other channel
Due to a hardware limitation, the number of samples per channel must be a multiple of 4 and greater than 16 (non-cyclic buffers) or 1024 (cyclic buffers)
The samples in the buffer can be repeated until the buffer reaches the size requirements

◆ pushRawBytes()

virtual void libm2k::analog::M2kAnalogOut::pushRawBytes ( unsigned int  chnIdx,
short *  data,
unsigned int  nb_samples 
)
pure virtual

Send the samples to the given channel.

Parameters
chnIdxThe index corresponding to the channel
dataA pointer to the raw samples
nb_samplesthe number of samples
Note
Streaming data is possible - required multiple kernel buffers
The given channel won't be synchronized with the other channel
Due to a hardware limitation, the number of samples per channel must be a multiple of 4 and greater than 16 (non-cyclic buffers) or 1024 (cyclic buffers)
The samples in the buffer can be repeated until the buffer reaches the size requirements
Exceptions
EXC_OUT_OF_RANGENo such channel

◆ pushRawInterleaved()

virtual void libm2k::analog::M2kAnalogOut::pushRawInterleaved ( short *  data,
unsigned int  nb_channels,
unsigned int  nb_samples 
)
pure virtual

Send samples to all the channels.

Parameters
dataA pointer to the interleaved raw data
nb_channelsthe number of channels on which we want to push
nb_samplesthe number of samples total (samples_per_channel * channels)
Note
Make sure the raw samples are interleaved
Streaming data is possible - required multiple kernel buffers
The given channel will be synchronized with the other channel
Due to a hardware limitation, the number of samples per channel must be a multiple of 4 and greater than 16 (non-cyclic buffers) or 1024 (cyclic buffers)
The samples in the buffer can be repeated until the buffer reaches the size requirements

◆ setCyclic() [1/2]

virtual void libm2k::analog::M2kAnalogOut::setCyclic ( bool  en)
pure virtual

Enable or disable the cyclic mode for all digital channels.

Parameters
enIf true, enable cyclic mode
Exceptions
EXC_OUT_OF_RANGENo such channel

◆ setCyclic() [2/2]

virtual void libm2k::analog::M2kAnalogOut::setCyclic ( unsigned int  chn,
bool  en 
)
pure virtual

Enable or disable the cyclic mode for all digital channels.

Parameters
chnThe index corresponding to the channel
enIf true, enable cyclic mode
Exceptions
EXC_OUT_OF_RANGENo such channel

◆ setKernelBuffersCount()

virtual void libm2k::analog::M2kAnalogOut::setKernelBuffersCount ( unsigned int  chnIdx,
unsigned int  count 
)
pure virtual

Set the kernel buffers to a specific value.

Parameters
chnIdxThe index corresponding to the channel
countthe number of kernel buffers

◆ setOversamplingRatio() [1/2]

virtual std::vector<int> libm2k::analog::M2kAnalogOut::setOversamplingRatio ( std::vector< int >  oversampling_ratio)
pure virtual

Set the value of the oversampling ratio for each channel.

Parameters
oversampling_ratioA list containing the ratios for each channel (as integers)
Returns
A list containing the oversampling ratio value for each channel

◆ setOversamplingRatio() [2/2]

virtual int libm2k::analog::M2kAnalogOut::setOversamplingRatio ( unsigned int  chn,
int  oversampling_ratio 
)
pure virtual

Set the oversampling ratio for the given channel.

Parameters
chnThe index corresponding to the channel
oversampling_ratioInteger value to set the oversampling ratio to
Returns
The current oversampling ratio value

◆ setSampleRate() [1/2]

virtual std::vector<double> libm2k::analog::M2kAnalogOut::setSampleRate ( std::vector< double >  samplerates)
pure virtual

Set the sample rate for both channels.

Parameters
sampleratesA list containing the sample rates of each channel
Returns
A list containing the previously setted sample rates

◆ setSampleRate() [2/2]

virtual double libm2k::analog::M2kAnalogOut::setSampleRate ( unsigned int  chn,
double  samplerate 
)
pure virtual

Set the sample rate for the given channel.

Parameters
chnThe index corresponding to the channel
samplerateA double value to set the sample rate to
Returns
The value of the sample rate

◆ stop() [1/2]

virtual void libm2k::analog::M2kAnalogOut::stop ( )
pure virtual

Stop all channels from sending the signals.

Note
Both DACs will be powered down

◆ stop() [2/2]

virtual void libm2k::analog::M2kAnalogOut::stop ( unsigned int  chn)
pure virtual

Stop the given channels from sending the signals.

Parameters
chnThe index corresponding to the channel
Note
The corresponding DAC will be powered down
Exceptions
EXC_OUT_OF_RANGENo such channel