stm32f0: adc: API call to clear EOS flag
This commit is contained in:
parent
1adc418f9a
commit
7e1d3daa11
@ -277,6 +277,16 @@ bool adc_get_eoc_sequence_flag(uint32_t adc)
|
|||||||
return ADC_ISR(adc) & ADC_ISR_EOSEQ;
|
return ADC_ISR(adc) & ADC_ISR_EOSEQ;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*---------------------------------------------------------------------------*/
|
||||||
|
/** @ brief ADC Clear Regular End-Of-Conversion Sequence Flag
|
||||||
|
*
|
||||||
|
* @param[in] adc Unsigned int32. ADC base address (@ref adc_reg_base)
|
||||||
|
*/
|
||||||
|
|
||||||
|
void adc_clear_eoc_sequence_flag(uint32_t adc)
|
||||||
|
{
|
||||||
|
ADC_ISR(adc) = ADC_ISR_EOSEQ;
|
||||||
|
}
|
||||||
|
|
||||||
/**@}*/
|
/**@}*/
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user