2021-02-15 04:25 PM
I am using STM32L073.
When using this ADC, the EOC of the flag ADC_ISR for which AD conversion has been completed does not change unless the EOCIE of ADC_IER is set.
is it right.
Solved! Go to Solution.
2021-02-23 03:43 AM
Hi @HMura.6
The EOC of the flag ADC_ISR is set by hardware at the end of each conversion of a channel.
If the EOCIE (End of conversion interrupt enable) of ADC_IER is enabled then, an interrupt is generated when EOC bit is set.
Bouraoui
2021-02-23 03:43 AM
Hi @HMura.6
The EOC of the flag ADC_ISR is set by hardware at the end of each conversion of a channel.
If the EOCIE (End of conversion interrupt enable) of ADC_IER is enabled then, an interrupt is generated when EOC bit is set.
Bouraoui
2021-02-23 04:00 AM
"the EOC of the flag ADC_ISR for which AD conversion has been completed does not change unless the EOCIE of ADC_IER is set"
How, exactly, do you observe that?
2021-02-23 04:20 PM
I was thinking of monitoring ADC_ISR with software.
However, I understood the condition.
Thank you very much.