Fixed bug #877.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@10469 35acf78f-673a-0410-8e92-d51de3d6d3f4
This commit is contained in:
parent
d5ce517dc2
commit
db035833f5
|
@ -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
|
||||||
|
|
||||||
|
|
|
@ -93,6 +93,8 @@
|
||||||
dependencies and configuration directories. This makes possible
|
dependencies and configuration directories. This makes possible
|
||||||
to have multiple non-conflicting makefiles in the same project.
|
to have multiple non-conflicting makefiles in the same project.
|
||||||
Updated the various platform.mk implementing "smart build" mode.
|
Updated the various platform.mk implementing "smart build" mode.
|
||||||
|
- HAL: Fixed missing CAN definitions in STM32L432 registry entry (bug #877)
|
||||||
|
(backported to 17.6.1).
|
||||||
- HAL: Fixed missing STM32_TIM_MAX_CHANNELS definition in STM32L0 registry
|
- HAL: Fixed missing STM32_TIM_MAX_CHANNELS definition in STM32L0 registry
|
||||||
(bug #876)(backported to 17.6.1 and 16.1.9).
|
(bug #876)(backported to 17.6.1 and 16.1.9).
|
||||||
- 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