2017-01-24 00:45:42 +08:00
|
|
|
/*
|
|
|
|
*
|
|
|
|
* 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);
|
2017-04-18 20:24:04 +08:00
|
|
|
void config_enable_default_clocks(void);
|
2017-01-24 00:45:42 +08:00
|
|
|
|
2017-01-30 22:38:13 +08:00
|
|
|
/* Section for functions not available in every Cube packages */
|
2017-01-24 00:45:42 +08:00
|
|
|
void LL_RCC_MSI_Disable(void);
|
2017-01-30 22:38:13 +08:00
|
|
|
|
2017-01-24 00:45:42 +08:00
|
|
|
#endif /* _STM32_LL_CLOCK_H_ */
|