19#ifndef CLK_C0_CFG_CLOCK_DEFAULT_H
20#define CLK_C0_CFG_CLOCK_DEFAULT_H
35#if IS_ACTIVE(CONFIG_BOARD_HAS_HSE) && (CONFIG_CLOCK_HSE < MHZ(4) || CONFIG_CLOCK_HSE > MHZ(48))
36#error "HSE clock frequency must be between 4MHz and 48MHz"
40#ifndef CONFIG_CLOCK_HSISYS_DIV
41#define CONFIG_CLOCK_HSISYS_DIV (1)
45#if IS_ACTIVE(CONFIG_USE_CLOCK_HSI)
46#define CLOCK_CORECLOCK (CONFIG_CLOCK_HSI / CONFIG_CLOCK_HSISYS_DIV)
48#elif IS_ACTIVE(CONFIG_USE_CLOCK_HSE)
49#if !IS_ACTIVE(CONFIG_BOARD_HAS_HSE)
50#error "The board doesn't provide an HSE oscillator"
52#define CLOCK_CORECLOCK (CONFIG_CLOCK_HSE)
56#define CLOCK_AHB CLOCK_CORECLOCK
58#ifndef CONFIG_CLOCK_APB1_DIV
59#define CONFIG_CLOCK_APB1_DIV (1)
61#define CLOCK_APB1 (CLOCK_CORECLOCK / CONFIG_CLOCK_APB1_DIV) \
Base STM32Fx/Gx/MP1/C0 clock configuration.
Common macros and compiler attributes/pragmas configuration.