1 /*
2  * Copyright (c) 2016, Freescale Semiconductor, Inc.
3  * Copyright 2016-2017 NXP
4  *
5  * SPDX-License-Identifier: BSD-3-Clause
6  */
7 #ifndef _CLOCK_CONFIG_H_
8 #define _CLOCK_CONFIG_H_
9 
10 /*******************************************************************************
11  * DEFINITION
12  ******************************************************************************/
13 #define BOARD_XTAL0_CLK_HZ 24000000U
14 #define BOARD_XTAL32K_CLK_HZ 32768U
15 
16 /*******************************************************************************
17  * API
18  ******************************************************************************/
19 #if defined(__cplusplus)
20 extern "C" {
21 #endif /* __cplusplus*/
22 /*!
23  * @brief This function executes default configuration of clocks.
24  *
25  */
26 void BOARD_InitBootClocks(void);
27 
28 void BOARD_BootClockVLPR(void);
29 void BOARD_BootClockRUN(void);
30 void BOARD_BootClockHSRUN(void);
31 
32 #if defined(__cplusplus)
33 }
34 #endif /* __cplusplus*/
35 
36 #endif /* _CLOCK_CONFIG_H_ */
37