Commit 3b98ffad authored by 陈家乐's avatar 陈家乐

🐞 fix:禅道问题:45370、45353、45351,中微厂家更改

parent 324d2a83
......@@ -166,6 +166,12 @@ uint16_t ADC_Converse(ADC_Channel_t ch, uint32_t times, uint16_t *buf)
volatile uint8_t flag;
uint32_t total = 0;
if(times == 0)
{
return 0;
}
else
{
INTC_DisableIRQ(ADC_IRQn); // disable INTAD interrupt
ADC->ADM0 &= ~ADC_Enable;
......@@ -187,6 +193,7 @@ uint16_t ADC_Converse(ADC_Channel_t ch, uint32_t times, uint16_t *buf)
total += ADC->ADCR;
}
return (total / times); // return average value
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment