git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@15866 27425a3e-05d8-49a3-a47f-9c15f0e5edd8
This commit is contained in:
parent
49cf68e14a
commit
ffc86d58d8
|
@ -53,7 +53,7 @@
|
|||
#define STM32_LSI_ENABLED FALSE
|
||||
#define STM32_LSIPRE STM32_LSIPRE_NODIV
|
||||
#define STM32_HSE32_ENABLED TRUE
|
||||
#define STM32_HSE32SRC TRUE
|
||||
#define STM32_HSE32SRC STM32_HSE32_XTAL
|
||||
#define STM32_LSE_ENABLED TRUE
|
||||
#define STM32_MSIPLL_ENABLED TRUE
|
||||
#define STM32_MSIRANGE STM32_MSIRANGE_4M
|
||||
|
@ -128,7 +128,7 @@
|
|||
*/
|
||||
#define STM32_ADC_USE_ADC1 FALSE
|
||||
#define STM32_ADC_ADC1_CFGR2 ADC_CFGR2_CKMODE_ADCCLK
|
||||
#define STM32_ADC_ADC1_IRQ_PRIORITY 2
|
||||
#define STM32_ADC_ADC1_IRQ_PRIORITY 5
|
||||
#define STM32_ADC_ADC1_DMA_PRIORITY 2
|
||||
#define STM32_ADC_ADC1_DMA_IRQ_PRIORITY 5
|
||||
#define STM32_ADC_ADC1_DMA_STREAM STM32_DMA_STREAM_ID_ANY
|
||||
|
|
|
@ -1660,8 +1660,10 @@
|
|||
/**
|
||||
* @brief PLL1 DIVP field.
|
||||
*/
|
||||
#if ((STM32_PLL1_DIVP_VALUE >= 2) && (STM32_PLL1_DIVP_VALUE <= 128) && \
|
||||
((STM32_PLL1_DIVP_VALUE & 1) == 0)) || defined(__DOXYGEN__)
|
||||
#if (STM32_PLL1_DIVP_VALUE == 1) || \
|
||||
((STM32_PLL1_DIVP_VALUE >= 2) && (STM32_PLL1_DIVP_VALUE <= 128) && \
|
||||
((STM32_PLL1_DIVP_VALUE & 1) == 0)) || \
|
||||
defined(__DOXYGEN__)
|
||||
#define STM32_PLL1_DIVP ((STM32_PLL1_DIVP_VALUE - 1U) << RCC_PLL1DIVR_P1_Pos)
|
||||
#else
|
||||
#error "invalid STM32_PLL1_DIVP_VALUE value specified"
|
||||
|
|
|
@ -1725,8 +1725,10 @@
|
|||
/**
|
||||
* @brief PLL1 DIVP field.
|
||||
*/
|
||||
#if ((STM32_PLL1_DIVP_VALUE >= 2) && (STM32_PLL1_DIVP_VALUE <= 128) && \
|
||||
((STM32_PLL1_DIVP_VALUE & 1) == 0)) || defined(__DOXYGEN__)
|
||||
#if (STM32_PLL1_DIVP_VALUE == 1) || \
|
||||
((STM32_PLL1_DIVP_VALUE >= 2) && (STM32_PLL1_DIVP_VALUE <= 128) && \
|
||||
((STM32_PLL1_DIVP_VALUE & 1) == 0)) || \
|
||||
defined(__DOXYGEN__)
|
||||
#define STM32_PLL1_DIVP ((STM32_PLL1_DIVP_VALUE - 1U) << RCC_PLL1DIVR_P1_Pos)
|
||||
#else
|
||||
#error "invalid STM32_PLL1_DIVP_VALUE value specified"
|
||||
|
|
|
@ -53,7 +53,7 @@
|
|||
#define STM32_LSI_ENABLED FALSE
|
||||
#define STM32_LSIPRE STM32_LSIPRE_NODIV
|
||||
#define STM32_HSE32_ENABLED TRUE
|
||||
#define STM32_HSE32SRC TRUE
|
||||
#define STM32_HSE32SRC STM32_HSE32_XTAL
|
||||
#define STM32_LSE_ENABLED TRUE
|
||||
#define STM32_MSIPLL_ENABLED TRUE
|
||||
#define STM32_MSIRANGE STM32_MSIRANGE_4M
|
||||
|
@ -128,7 +128,7 @@
|
|||
*/
|
||||
#define STM32_ADC_USE_ADC1 TRUE
|
||||
#define STM32_ADC_ADC1_CFGR2 ADC_CFGR2_CKMODE_ADCCLK
|
||||
#define STM32_ADC_ADC1_IRQ_PRIORITY 2
|
||||
#define STM32_ADC_ADC1_IRQ_PRIORITY 5
|
||||
#define STM32_ADC_ADC1_DMA_PRIORITY 2
|
||||
#define STM32_ADC_ADC1_DMA_IRQ_PRIORITY 5
|
||||
#define STM32_ADC_ADC1_DMA_STREAM STM32_DMA_STREAM_ID_ANY
|
||||
|
|
|
@ -53,7 +53,7 @@
|
|||
#define STM32_LSI_ENABLED FALSE
|
||||
#define STM32_LSIPRE STM32_LSIPRE_NODIV
|
||||
#define STM32_HSE32_ENABLED TRUE
|
||||
#define STM32_HSE32SRC TRUE
|
||||
#define STM32_HSE32SRC STM32_HSE32_XTAL
|
||||
#define STM32_LSE_ENABLED TRUE
|
||||
#define STM32_MSIPLL_ENABLED TRUE
|
||||
#define STM32_MSIRANGE STM32_MSIRANGE_4M
|
||||
|
@ -128,7 +128,7 @@
|
|||
*/
|
||||
#define STM32_ADC_USE_ADC1 FALSE
|
||||
#define STM32_ADC_ADC1_CFGR2 ADC_CFGR2_CKMODE_ADCCLK
|
||||
#define STM32_ADC_ADC1_IRQ_PRIORITY 2
|
||||
#define STM32_ADC_ADC1_IRQ_PRIORITY 5
|
||||
#define STM32_ADC_ADC1_DMA_PRIORITY 2
|
||||
#define STM32_ADC_ADC1_DMA_IRQ_PRIORITY 5
|
||||
#define STM32_ADC_ADC1_DMA_STREAM STM32_DMA_STREAM_ID_ANY
|
||||
|
|
|
@ -53,7 +53,7 @@
|
|||
#define STM32_LSI_ENABLED FALSE
|
||||
#define STM32_LSIPRE STM32_LSIPRE_NODIV
|
||||
#define STM32_HSE32_ENABLED TRUE
|
||||
#define STM32_HSE32SRC TRUE
|
||||
#define STM32_HSE32SRC STM32_HSE32_XTAL
|
||||
#define STM32_LSE_ENABLED TRUE
|
||||
#define STM32_MSIPLL_ENABLED TRUE
|
||||
#define STM32_MSIRANGE STM32_MSIRANGE_4M
|
||||
|
@ -128,7 +128,7 @@
|
|||
*/
|
||||
#define STM32_ADC_USE_ADC1 FALSE
|
||||
#define STM32_ADC_ADC1_CFGR2 ADC_CFGR2_CKMODE_ADCCLK
|
||||
#define STM32_ADC_ADC1_IRQ_PRIORITY 2
|
||||
#define STM32_ADC_ADC1_IRQ_PRIORITY 5
|
||||
#define STM32_ADC_ADC1_DMA_PRIORITY 2
|
||||
#define STM32_ADC_ADC1_DMA_IRQ_PRIORITY 5
|
||||
#define STM32_ADC_ADC1_DMA_STREAM STM32_DMA_STREAM_ID_ANY
|
||||
|
|
|
@ -53,7 +53,7 @@
|
|||
#define STM32_LSI_ENABLED FALSE
|
||||
#define STM32_LSIPRE STM32_LSIPRE_NODIV
|
||||
#define STM32_HSE32_ENABLED TRUE
|
||||
#define STM32_HSE32SRC TRUE
|
||||
#define STM32_HSE32SRC STM32_HSE32_XTAL
|
||||
#define STM32_LSE_ENABLED TRUE
|
||||
#define STM32_MSIPLL_ENABLED TRUE
|
||||
#define STM32_MSIRANGE STM32_MSIRANGE_4M
|
||||
|
@ -128,7 +128,7 @@
|
|||
*/
|
||||
#define STM32_ADC_USE_ADC1 FALSE
|
||||
#define STM32_ADC_ADC1_CFGR2 ADC_CFGR2_CKMODE_ADCCLK
|
||||
#define STM32_ADC_ADC1_IRQ_PRIORITY 2
|
||||
#define STM32_ADC_ADC1_IRQ_PRIORITY 5
|
||||
#define STM32_ADC_ADC1_DMA_PRIORITY 2
|
||||
#define STM32_ADC_ADC1_DMA_IRQ_PRIORITY 5
|
||||
#define STM32_ADC_ADC1_DMA_STREAM STM32_DMA_STREAM_ID_ANY
|
||||
|
|
|
@ -53,7 +53,7 @@
|
|||
#define STM32_LSI_ENABLED FALSE
|
||||
#define STM32_LSIPRE STM32_LSIPRE_NODIV
|
||||
#define STM32_HSE32_ENABLED TRUE
|
||||
#define STM32_HSE32SRC TRUE
|
||||
#define STM32_HSE32SRC STM32_HSE32_XTAL
|
||||
#define STM32_LSE_ENABLED TRUE
|
||||
#define STM32_MSIPLL_ENABLED TRUE
|
||||
#define STM32_MSIRANGE STM32_MSIRANGE_4M
|
||||
|
@ -128,7 +128,7 @@
|
|||
*/
|
||||
#define STM32_ADC_USE_ADC1 FALSE
|
||||
#define STM32_ADC_ADC1_CFGR2 ADC_CFGR2_CKMODE_ADCCLK
|
||||
#define STM32_ADC_ADC1_IRQ_PRIORITY 2
|
||||
#define STM32_ADC_ADC1_IRQ_PRIORITY 5
|
||||
#define STM32_ADC_ADC1_DMA_PRIORITY 2
|
||||
#define STM32_ADC_ADC1_DMA_IRQ_PRIORITY 5
|
||||
#define STM32_ADC_ADC1_DMA_STREAM STM32_DMA_STREAM_ID_ANY
|
||||
|
|
|
@ -53,7 +53,7 @@
|
|||
#define STM32_LSI_ENABLED FALSE
|
||||
#define STM32_LSIPRE STM32_LSIPRE_NODIV
|
||||
#define STM32_HSE32_ENABLED TRUE
|
||||
#define STM32_HSE32SRC TRUE
|
||||
#define STM32_HSE32SRC STM32_HSE32_XTAL
|
||||
#define STM32_LSE_ENABLED TRUE
|
||||
#define STM32_MSIPLL_ENABLED TRUE
|
||||
#define STM32_MSIRANGE STM32_MSIRANGE_4M
|
||||
|
@ -128,7 +128,7 @@
|
|||
*/
|
||||
#define STM32_ADC_USE_ADC1 FALSE
|
||||
#define STM32_ADC_ADC1_CFGR2 ADC_CFGR2_CKMODE_ADCCLK
|
||||
#define STM32_ADC_ADC1_IRQ_PRIORITY 2
|
||||
#define STM32_ADC_ADC1_IRQ_PRIORITY 5
|
||||
#define STM32_ADC_ADC1_DMA_PRIORITY 2
|
||||
#define STM32_ADC_ADC1_DMA_IRQ_PRIORITY 5
|
||||
#define STM32_ADC_ADC1_DMA_STREAM STM32_DMA_STREAM_ID_ANY
|
||||
|
|
|
@ -53,7 +53,7 @@
|
|||
#define STM32_LSI_ENABLED FALSE
|
||||
#define STM32_LSIPRE STM32_LSIPRE_NODIV
|
||||
#define STM32_HSE32_ENABLED TRUE
|
||||
#define STM32_HSE32SRC TRUE
|
||||
#define STM32_HSE32SRC STM32_HSE32_XTAL
|
||||
#define STM32_LSE_ENABLED TRUE
|
||||
#define STM32_MSIPLL_ENABLED TRUE
|
||||
#define STM32_MSIRANGE STM32_MSIRANGE_4M
|
||||
|
@ -128,7 +128,7 @@
|
|||
*/
|
||||
#define STM32_ADC_USE_ADC1 FALSE
|
||||
#define STM32_ADC_ADC1_CFGR2 ADC_CFGR2_CKMODE_ADCCLK
|
||||
#define STM32_ADC_ADC1_IRQ_PRIORITY 2
|
||||
#define STM32_ADC_ADC1_IRQ_PRIORITY 5
|
||||
#define STM32_ADC_ADC1_DMA_PRIORITY 2
|
||||
#define STM32_ADC_ADC1_DMA_IRQ_PRIORITY 5
|
||||
#define STM32_ADC_ADC1_DMA_STREAM STM32_DMA_STREAM_ID_ANY
|
||||
|
|
|
@ -53,7 +53,7 @@
|
|||
#define STM32_LSI_ENABLED FALSE
|
||||
#define STM32_LSIPRE STM32_LSIPRE_NODIV
|
||||
#define STM32_HSE32_ENABLED TRUE
|
||||
#define STM32_HSE32SRC TRUE
|
||||
#define STM32_HSE32SRC STM32_HSE32_XTAL
|
||||
#define STM32_LSE_ENABLED TRUE
|
||||
#define STM32_MSIPLL_ENABLED TRUE
|
||||
#define STM32_MSIRANGE STM32_MSIRANGE_4M
|
||||
|
@ -128,7 +128,7 @@
|
|||
*/
|
||||
#define STM32_ADC_USE_ADC1 FALSE
|
||||
#define STM32_ADC_ADC1_CFGR2 ADC_CFGR2_CKMODE_ADCCLK
|
||||
#define STM32_ADC_ADC1_IRQ_PRIORITY 2
|
||||
#define STM32_ADC_ADC1_IRQ_PRIORITY 5
|
||||
#define STM32_ADC_ADC1_DMA_PRIORITY 2
|
||||
#define STM32_ADC_ADC1_DMA_IRQ_PRIORITY 5
|
||||
#define STM32_ADC_ADC1_DMA_STREAM STM32_DMA_STREAM_ID_ANY
|
||||
|
|
|
@ -53,7 +53,7 @@
|
|||
#define STM32_LSI_ENABLED FALSE
|
||||
#define STM32_LSIPRE STM32_LSIPRE_NODIV
|
||||
#define STM32_HSE32_ENABLED TRUE
|
||||
#define STM32_HSE32SRC TRUE
|
||||
#define STM32_HSE32SRC STM32_HSE32_XTAL
|
||||
#define STM32_LSE_ENABLED TRUE
|
||||
#define STM32_MSIPLL_ENABLED TRUE
|
||||
#define STM32_MSIRANGE STM32_MSIRANGE_4M
|
||||
|
@ -128,7 +128,7 @@
|
|||
*/
|
||||
#define STM32_ADC_USE_ADC1 FALSE
|
||||
#define STM32_ADC_ADC1_CFGR2 ADC_CFGR2_CKMODE_ADCCLK
|
||||
#define STM32_ADC_ADC1_IRQ_PRIORITY 2
|
||||
#define STM32_ADC_ADC1_IRQ_PRIORITY 5
|
||||
#define STM32_ADC_ADC1_DMA_PRIORITY 2
|
||||
#define STM32_ADC_ADC1_DMA_IRQ_PRIORITY 5
|
||||
#define STM32_ADC_ADC1_DMA_STREAM STM32_DMA_STREAM_ID_ANY
|
||||
|
|
Loading…
Reference in New Issue