1.32.2.15 ADCx_InterruptsDisable Function

C

void ADCx_InterruptsDisable(ADC_STATUS interruptMask); // x is instance of the peripheral and it is applicable only for devices having multiple instances of the peripheral.

Summary

This function disables the interrupts.

Description

This function disables the multiple interrupts.

Precondition

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

Parameters

Param Description
interruptMask interrupt flags to be disbaled

Returns

None

Example

ADC0_Initialize();
ADC0_InterruptsDisable(ADC_STATUS_RESRDY);

Remarks

None