From c7052ac6d24cc0d75ac4274174289e4baeccc7be Mon Sep 17 00:00:00 2001 From: NIIBE Yutaka Date: Tue, 12 Nov 2013 13:02:44 +0900 Subject: [PATCH] adc driver update --- ChangeLog | 4 ++++ src/adc_stm32f103.c | 6 ------ 2 files changed, 4 insertions(+), 6 deletions(-) diff --git a/ChangeLog b/ChangeLog index 8ef0aef..8696757 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2013-11-12 Niibe Yutaka + + * src/adc_stm32f103.c (adc_wait_completion): Update from NeuG 1.0. + 2013-11-03 Niibe Yutaka * regnual/regnual.c (usb_cb_get_descriptor): Update to new API. diff --git a/src/adc_stm32f103.c b/src/adc_stm32f103.c index 43a2c72..85d9030 100644 --- a/src/adc_stm32f103.c +++ b/src/adc_stm32f103.c @@ -262,11 +262,5 @@ int adc_wait_completion (chopstx_intr_t *intr) adc_stop_conversion (); return 0; } - - /* - * Even if STM32_DMA_CR_HTIE is unset, we come here with HTIF=1, - * with unknown reason. Just ignore the interrupt by HTIF to - * continue more data. - */ } }