23#ifndef CLK_F2F4F7_CFG_CLOCK_DEFAULT_100_H
24#define CLK_F2F4F7_CFG_CLOCK_DEFAULT_100_H
42#ifndef CONFIG_CLOCK_PLL_M
43#if IS_ACTIVE(CONFIG_BOARD_HAS_HSE) && (CONFIG_CLOCK_HSE == MHZ(25))
44#define CONFIG_CLOCK_PLL_M (25)
46#define CONFIG_CLOCK_PLL_M (4)
49#ifndef CONFIG_CLOCK_PLL_N
50#if (IS_USED(MODULE_PERIPH_USBDEV_CLK) || IS_USED(MODULE_PERIPH_SDMMC_CLK)) && \
51 defined(CPU_LINE_STM32F411xE)
52#if IS_ACTIVE(CONFIG_BOARD_HAS_HSE) && (CONFIG_CLOCK_HSE == MHZ(8))
53#define CONFIG_CLOCK_PLL_N (96)
54#elif IS_ACTIVE(CONFIG_BOARD_HAS_HSE) && (CONFIG_CLOCK_HSE == MHZ(25))
55#define CONFIG_CLOCK_PLL_N (192)
57#define CONFIG_CLOCK_PLL_N (48)
60#if IS_ACTIVE(CONFIG_BOARD_HAS_HSE) && (CONFIG_CLOCK_HSE == MHZ(8))
61#define CONFIG_CLOCK_PLL_N (100)
62#elif IS_ACTIVE(CONFIG_BOARD_HAS_HSE) && (CONFIG_CLOCK_HSE == MHZ(25))
63#define CONFIG_CLOCK_PLL_N (200)
65#define CONFIG_CLOCK_PLL_N (50)
69#ifndef CONFIG_CLOCK_PLL_P
70#define CONFIG_CLOCK_PLL_P (2)
72#ifndef CONFIG_CLOCK_PLL_Q
73#define CONFIG_CLOCK_PLL_Q (4)
75#ifndef CONFIG_CLOCK_PLL_R
76#define CONFIG_CLOCK_PLL_R (4)
84#ifndef CONFIG_CLOCK_APB1_DIV
85#define CONFIG_CLOCK_APB1_DIV (2)
87#ifndef CONFIG_CLOCK_APB2_DIV
88#define CONFIG_CLOCK_APB2_DIV (1)
92#if CLOCK_CORECLOCK > MHZ(100)
93#error "SYSCLK cannot exceed 100MHz"
Common macros and compiler attributes/pragmas configuration.