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