1.41.1.5 ADC_ChannelsInterruptDisable Function

C

void ADC_ChannelsInterruptDisable(ADC_INTERRUPT_MASK channelsInterruptMask)
void ADC_ChannelsInterruptDisable(ADC_INTERRUPT_EOC_MASK channelsInterruptMask)

Summary

Disables the ADC interrupt sources

Description

This function disables interrupt sources specified in channelsInterruptMask.

Precondition

ADC_Initialize() function must have been called first for the associated instance.

Parameters

Param Description
channelsInterruptMask interrupt sources

Returns

None.

Example

ADC_Initialize();
ADC_ChannelsInterruptDisable(ADC_INTERRUPT_EOC_0_MASK);

Remarks

This function does not disable interrupts which are not included in the mask.