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:
parent
faed89a33d
commit
aeed6d78c1
|
@ -205,6 +205,8 @@ typedef enum {
|
||||||
if ((adcp)->state == ADC_COMPLETE) \
|
if ((adcp)->state == ADC_COMPLETE) \
|
||||||
(adcp)->state = ADC_READY; \
|
(adcp)->state = ADC_READY; \
|
||||||
} \
|
} \
|
||||||
|
else \
|
||||||
|
(adcp)->state = ADC_READY; \
|
||||||
(adcp)->grpp = NULL; \
|
(adcp)->grpp = NULL; \
|
||||||
_adc_wakeup_isr(adcp); \
|
_adc_wakeup_isr(adcp); \
|
||||||
} \
|
} \
|
||||||
|
|
|
@ -71,6 +71,8 @@
|
||||||
*****************************************************************************
|
*****************************************************************************
|
||||||
|
|
||||||
*** 2.3.2 ***
|
*** 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
|
- FIX: Fixed missing state transition in SPI driver (bug 3288112)(backported
|
||||||
to 2.2.4).
|
to 2.2.4).
|
||||||
- FIX: Fixed spurious characters generated by Serial over USB driver (bug
|
- FIX: Fixed spurious characters generated by Serial over USB driver (bug
|
||||||
|
|
Loading…
Reference in New Issue