iLLD_TC27xC  1.0
Operative Functions
Collaboration diagram for Operative Functions:

Functions

IFX_INLINE void IfxDsadc_Dsadc_startScan (IfxDsadc_Dsadc *dsadc, uint32 modulatorMask, uint32 channelMask)
 Enables the conversion of multiple channels. More...
 
IFX_INLINE void IfxDsadc_Dsadc_stopScan (IfxDsadc_Dsadc *dsadc, uint32 modulatorMask)
 Disables the conversion of multiple channels. More...
 

Detailed Description

Function Documentation

IFX_INLINE void IfxDsadc_Dsadc_startScan ( IfxDsadc_Dsadc dsadc,
uint32  modulatorMask,
uint32  channelMask 
)

Enables the conversion of multiple channels.

Parameters
dsadcPointer to the DSADC handle
modulatorMaskthe modulator which should be running (bitwise selection)
channelMaskthe channels which should be scanned (bitwise selection)
Returns
None
// enable the conversion of all 6 DSADC channels
IfxDsadc_Dsadc_startScan(&dsadc, 0x3f, 0x3f);
// results are now available with \ref IfxDsadc_Dsadc_getMainResult

Definition at line 531 of file IfxDsadc_Dsadc.h.

IFX_INLINE void IfxDsadc_Dsadc_stopScan ( IfxDsadc_Dsadc dsadc,
uint32  modulatorMask 
)

Disables the conversion of multiple channels.

Parameters
dsadcPointer to the DSADC handle
modulatorMaskthe modulator which should be running (bitwise selection)
Returns
None
// disable the modulators of all 6 DSADC channels

Definition at line 537 of file IfxDsadc_Dsadc.h.