Fixed bug #877.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/branches/stable_17.6.x@10468 35acf78f-673a-0410-8e92-d51de3d6d3f4
This commit is contained in:
parent
7c93f81072
commit
8200cecdc0
|
@ -101,6 +101,11 @@
|
||||||
#define STM32_ADC_ADC1_DMA_PRIORITY 2
|
#define STM32_ADC_ADC1_DMA_PRIORITY 2
|
||||||
#define STM32_ADC_ADC1_DMA_IRQ_PRIORITY 5
|
#define STM32_ADC_ADC1_DMA_IRQ_PRIORITY 5
|
||||||
#define STM32_ADC_ADC123_CLOCK_MODE ADC_CCR_CKMODE_AHB_DIV1
|
#define STM32_ADC_ADC123_CLOCK_MODE ADC_CCR_CKMODE_AHB_DIV1
|
||||||
|
/*
|
||||||
|
* CAN driver system settings.
|
||||||
|
*/
|
||||||
|
#define STM32_CAN_USE_CAN1 FALSE
|
||||||
|
#define STM32_CAN_CAN1_IRQ_PRIORITY 11
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* DAC driver system settings.
|
* DAC driver system settings.
|
||||||
|
|
|
@ -63,7 +63,17 @@
|
||||||
#define STM32_HAS_ADC4 FALSE
|
#define STM32_HAS_ADC4 FALSE
|
||||||
|
|
||||||
/* CAN attributes.*/
|
/* CAN attributes.*/
|
||||||
#define STM32_HAS_CAN1 FALSE
|
#define STM32_HAS_CAN1 TRUE
|
||||||
|
#define STM32_CAN_MAX_FILTERS 14
|
||||||
|
#define STM32_CAN1_TX_HANDLER Vector8C
|
||||||
|
#define STM32_CAN1_RX0_HANDLER Vector90
|
||||||
|
#define STM32_CAN1_RX1_HANDLER Vector94
|
||||||
|
#define STM32_CAN1_SCE_HANDLER Vector98
|
||||||
|
#define STM32_CAN1_TX_NUMBER 19
|
||||||
|
#define STM32_CAN1_RX0_NUMBER 20
|
||||||
|
#define STM32_CAN1_RX1_NUMBER 21
|
||||||
|
#define STM32_CAN1_SCE_NUMBER 22
|
||||||
|
|
||||||
#define STM32_HAS_CAN2 FALSE
|
#define STM32_HAS_CAN2 FALSE
|
||||||
#define STM32_HAS_CAN3 FALSE
|
#define STM32_HAS_CAN3 FALSE
|
||||||
|
|
||||||
|
|
|
@ -89,6 +89,7 @@
|
||||||
*****************************************************************************
|
*****************************************************************************
|
||||||
|
|
||||||
*** 17.6.1 ***
|
*** 17.6.1 ***
|
||||||
|
- HAL: Fixed missing CAN definitions in STM32L432 registry entry (bug #877).
|
||||||
- HAL: Fixed missing STM32_TIM_MAX_CHANNELS definition in STM32L0 registry
|
- HAL: Fixed missing STM32_TIM_MAX_CHANNELS definition in STM32L0 registry
|
||||||
(bug #876).
|
(bug #876).
|
||||||
- HAL: Fixed STM32 OTGv1 driver fails on STM32L4 (bug #875).
|
- HAL: Fixed STM32 OTGv1 driver fails on STM32L4 (bug #875).
|
||||||
|
|
Loading…
Reference in New Issue