diff options
author | Clyne Sullivan <clyne@bitgloo.com> | 2020-10-20 20:14:08 -0400 |
---|---|---|
committer | Clyne Sullivan <clyne@bitgloo.com> | 2020-10-20 20:14:08 -0400 |
commit | ee274be303987c28fd26e88411378557f1ff566b (patch) | |
tree | 082be80436ac4402d1b2fa30a53a46230c3cb179 /cfg/mcuconf.h | |
parent | 30cd119dba0e2caf48b6bf5016f60dcede62f511 (diff) |
firmware can port to L432KC; gui: edit buffer size
Diffstat (limited to 'cfg/mcuconf.h')
-rw-r--r-- | cfg/mcuconf.h | 17 |
1 files changed, 12 insertions, 5 deletions
diff --git a/cfg/mcuconf.h b/cfg/mcuconf.h index 8b49f7a..929e049 100644 --- a/cfg/mcuconf.h +++ b/cfg/mcuconf.h @@ -33,7 +33,7 @@ #define STM32L4xx_MCUCONF
#define STM32L476_MCUCONF
-#define STM32L486_MCUCONF
+//#define STM32L432_MCUCONF
/*
* HAL driver system settings.
@@ -135,8 +135,8 @@ #define STM32_ADC_DUAL_MODE FALSE
#define STM32_ADC_COMPACT_SAMPLES FALSE
#define STM32_ADC_USE_ADC1 TRUE
-#define STM32_ADC_USE_ADC2 TRUE
-#define STM32_ADC_USE_ADC3 TRUE
+#define STM32_ADC_USE_ADC2 FALSE
+#define STM32_ADC_USE_ADC3 FALSE
#define STM32_ADC_ADC1_DMA_STREAM STM32_DMA_STREAM_ID(1, 1)
#define STM32_ADC_ADC2_DMA_STREAM STM32_DMA_STREAM_ID(1, 2)
#define STM32_ADC_ADC3_DMA_STREAM STM32_DMA_STREAM_ID(1, 3)
@@ -178,10 +178,10 @@ #define STM32_GPT_USE_TIM1 FALSE
#define STM32_GPT_USE_TIM2 FALSE
#define STM32_GPT_USE_TIM3 FALSE
-#define STM32_GPT_USE_TIM4 TRUE
+#define STM32_GPT_USE_TIM4 FALSE
#define STM32_GPT_USE_TIM5 FALSE
#define STM32_GPT_USE_TIM6 TRUE
-#define STM32_GPT_USE_TIM7 FALSE
+#define STM32_GPT_USE_TIM7 TRUE
#define STM32_GPT_USE_TIM8 FALSE
#define STM32_GPT_USE_TIM15 FALSE
#define STM32_GPT_USE_TIM16 FALSE
@@ -335,9 +335,16 @@ /*
* USB driver system settings.
*/
+#ifdef STM32L476_MCUCONF
#define STM32_USB_USE_OTG1 TRUE
#define STM32_USB_OTG1_IRQ_PRIORITY 14
#define STM32_USB_OTG1_RX_FIFO_SIZE 512
+#else
+#define STM32_USB_USE_USB1 TRUE
+#define STM32_USB_LOW_POWER_ON_SUSPEND FALSE
+#define STM32_USB_USB1_HP_IRQ_PRIORITY 13
+#define STM32_USB_USB1_LP_IRQ_PRIORITY 14
+#endif // STM32L476_MCUCONF
/*
* WDG driver system settings.
|