2.3.65 ADCx_ChannelResultFlagClear Function
C
// x is instance of the peripheral and it is applicable only for devices having multiple instances of the peripheral.
inline static void ADCx_ChannelResultFlagClear(ADCx_CHANNEL channel);
Summary
Clears individual channel interrupt flag.
Description
This inline function clears individual channel interrupt flag.
Precondition
The flag is not cleared without reading the data from buffer. Hence call ADCx_ConversionResultGet() function to read data before calling this function.
Parameters
Param | Description |
---|---|
channel | Selected channel |
Returns
None.
Example
ADC1_ChannelResultFlagClear(ADC1_CHANNEL channel);
Remarks
None.