1 /*
2 * Copyright 2017 NXP
3 * All rights reserved.
4 *
5 * SPDX-License-Identifier: BSD-3-Clause
6 */
7
8 #include "fsl_common.h"
9 #include "clock_config.h"
10
11 /*******************************************************************************
12 * Definitions
13 ******************************************************************************/
14
15 /*******************************************************************************
16 * Variables
17 ******************************************************************************/
18 /* System clock frequency. */
19 extern uint32_t SystemCoreClock;
20
21 /*******************************************************************************
22 * Code
23 ******************************************************************************/
24
BOARD_BootClockVLPR(void)25 void BOARD_BootClockVLPR(void)
26 {
27 SystemCoreClockUpdate();
28 }
29
BOARD_BootClockRUN(void)30 void BOARD_BootClockRUN(void)
31 {
32 SystemCoreClockUpdate();
33 }
34