git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@6637 35acf78f-673a-0410-8e92-d51de3d6d3f4
This commit is contained in:
gdisirio 2014-01-22 13:29:48 +00:00
parent 027e1f3845
commit 0837d7958c
2 changed files with 3 additions and 2 deletions

View File

@ -156,8 +156,7 @@ void adc_lld_init(void) {
/* The shared vector is initialized on driver initialization and never
disabled.*/
nvicEnableVector(ADC1_COMP_IRQn,
CORTEX_PRIORITY_MASK(STM32_ADC_IRQ_PRIORITY));
nvicEnableVector(12, CORTEX_PRIORITY_MASK(STM32_ADC_IRQ_PRIORITY));
/* Calibration procedure.*/
rccEnableADC1(FALSE);

View File

@ -89,6 +89,8 @@
*****************************************************************************
*** 2.7.0 ***
- FIX: Fixed compile error in STM32F0xx ADC driver when STM32F0XX_LD devices
are selected (bug #460)(backported to 2.6.3).
- FIX: Fixed race condition in STM32 SDC driver (bug #458)(backported
to 2.6.3).
- FIX: Fixed race condition in STM32 OTG driver (bug #457)(backported