git-svn-id: svn://svn.code.sf.net/p/chibios/svn/branches/stable_16.1.x@9563 35acf78f-673a-0410-8e92-d51de3d6d3f4
This commit is contained in:
Rocco Marco Guglielmi 2016-06-03 10:54:11 +00:00
parent 68986d51aa
commit fc903ea664
2 changed files with 6 additions and 1 deletions

View File

@ -230,8 +230,12 @@ typedef enum {
(adcp)->grpp->error_cb(adcp, err); \
if ((adcp)->state == ADC_ERROR) \
(adcp)->state = ADC_READY; \
(adcp)->grpp = NULL; \
} \
else { \
(adcp)->state = ADC_READY; \
(adcp)->grpp = NULL; \
} \
(adcp)->grpp = NULL; \
_adc_timeout_isr(adcp); \
}
/** @} */

View File

@ -73,6 +73,7 @@
*****************************************************************************
*** 16.1.5 ***
- HAL: Fixed wrong conditional branches in _adc_isr_error_code (bug #751).
- HAL: Fixed bug in STM32/ADCv3 (bug #750).
- HAL: Fixed OPT settings and added board folder in STM32F4xx-USB_CDC demo
(bug #749).