Fixed bug 3114696.

git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@2412 35acf78f-673a-0410-8e92-d51de3d6d3f4
This commit is contained in:
gdisirio 2010-11-21 18:41:12 +00:00
parent feba444df5
commit 1de70ad9c8
2 changed files with 3 additions and 1 deletions

View File

@ -190,7 +190,6 @@ typedef enum {
} \
} \
else { \
(adcp)->ad_grpp = NULL; \
/* End conversion.*/ \
adc_lld_stop_conversion(adcp); \
if ((adcp)->ad_grpp->acg_endcb == NULL) { \
@ -212,6 +211,7 @@ typedef enum {
if ((adcp)->ad_state == ADC_COMPLETE) \
(adcp)->ad_state = ADC_READY; \
} \
(adcp)->ad_grpp = NULL; \
} \
}

View File

@ -65,6 +65,8 @@
*****************************************************************************
*** 2.1.4 ***
- FIX: Fixed failure in STM32 ADC driver when a linear buffer mode is used
(bug 3114696).
- FIX: Fixed PWM channels going to ACTIVE state when the pulse width is
set to zero in the STM32 PWM driver (bug 3114481)(backported to 2.0.8).
- FIX: Fixed PWM channels return to IDLE state in STM32 PWM driver (bug