1 /*
2  * Copyright 2022-2024 NXP
3  *
4  * SPDX-License-Identifier: BSD-3-Clause
5  */
6 #ifndef _CLOCK_CONFIG_H_
7 #define _CLOCK_CONFIG_H_
8 
9 #include "fsl_clock.h"
10 
11 /*******************************************************************************
12  * DEFINITION
13  ******************************************************************************/
14 
15 /*******************************************************************************
16  * API
17  ******************************************************************************/
18 #if defined(__cplusplus)
19 extern "C" {
20 #endif /* __cplusplus*/
21 
22 /*!
23  * @brief This function executes default configuration of clocks.
24  *
25  */
26 void BOARD_InitBootClocks(void);
27 
28 
29 void BOARD_BootClockRUN(void);
30 
31 #if defined(__cplusplus)
32 }
33 #endif /* __cplusplus*/
34 
35 #endif /* _CLOCK_CONFIG_H_ */
36