mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-09-05 01:32:38 +00:00
This commit enables STM32Cube LL based driver for stm32f4 series. This generic driver provides a unified API to clock driver for all stm32 series. LL API allows driver to be lightweight and to keep genericity across stm32 family to ease further devlopment and maintenance. Change-Id: Ie31ae8f433313787f9c9eda77de41925721d54dd Signed-off-by: Erwan Gouriou <erwan.gouriou@linaro.org>
18 lines
373 B
C
18 lines
373 B
C
/*
|
|
*
|
|
* Copyright (c) 2017 Linaro Limited.
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#ifndef _STM32_LL_CLOCK_H_
|
|
#define _STM32_LL_CLOCK_H_
|
|
|
|
void config_pll_init(LL_UTILS_PLLInitTypeDef *pllinit);
|
|
void config_enable_default_clocks(void);
|
|
|
|
/* Section for functions not available in every Cube packages */
|
|
void LL_RCC_MSI_Disable(void);
|
|
|
|
#endif /* _STM32_LL_CLOCK_H_ */
|