1 /*
2  * Copyright 2017, NXP
3  * All rights reserved.
4  *
5  * SPDX-License-Identifier: BSD-3-Clause
6  */
7 
8 /**
9  * @file    clock_config.h
10  * @brief   Board clocks header file.
11  */
12 
13 /* This is an empty template for board specific configuration.*/
14 
15 #ifndef _CLOCK_CONFIG_H_
16 #define _CLOCK_CONFIG_H_
17 
18 #if defined(__cplusplus)
19 extern "C" {
20 #endif /* __cplusplus */
21 
22 /**
23  * @brief 	Initialize board clocks.
24  */
25 void BOARD_InitBootClocks(void);
26 
27 #if defined(__cplusplus)
28 }
29 #endif /* __cplusplus */
30 
31 #endif /* _CLOCK_CONFIG_H_ */
32