Fixed bug 3288149.

git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@2881 35acf78f-673a-0410-8e92-d51de3d6d3f4
This commit is contained in:
gdisirio 2011-04-16 09:27:46 +00:00
parent faed89a33d
commit aeed6d78c1
2 changed files with 4 additions and 0 deletions

View File

@ -205,6 +205,8 @@ typedef enum {
if ((adcp)->state == ADC_COMPLETE) \
(adcp)->state = ADC_READY; \
} \
else \
(adcp)->state = ADC_READY; \
(adcp)->grpp = NULL; \
_adc_wakeup_isr(adcp); \
} \

View File

@ -71,6 +71,8 @@
*****************************************************************************
*** 2.3.2 ***
- FIX: Fixed missing state transition in ADC driver (bug 3288149)(backported
to 2.2.4).
- FIX: Fixed missing state transition in SPI driver (bug 3288112)(backported
to 2.2.4).
- FIX: Fixed spurious characters generated by Serial over USB driver (bug