1 /*
2 ** ###################################################################
3 **     Processors:          MIMXRT798SGAWAR_ezhv
4 **                          MIMXRT798SGFOA_ezhv
5 **
6 **     Compilers:           LLVM
7 **
8 **     Reference manual:    iMXRT700RM Rev.1, 06/2023
9 **     Version:             rev. 1.0, 2022-08-01
10 **     Build:               b231008
11 **
12 **     Copyright 2016 Freescale Semiconductor, Inc.
13 **     Copyright 2016-2023 NXP
14 **     SPDX-License-Identifier: BSD-3-Clause
15 **
16 **     http:                 www.nxp.com
17 **     mail:                 support@nxp.com
18 **
19 **     Revisions:
20 **     - rev. 1.0 (2022-08-01)
21 **         Initial version.
22 **
23 ** ###################################################################
24 */
25 
26 /*!
27  * @file MIMXRT798S_ezhv
28  * @version 1.0
29  * @date 2022-08-01
30  * @brief Device specific configuration file for MIMXRT798S_ezhv
31  *        (implementation file)
32  *
33  */
34 
35 #include <stdint.h>
36 #include <stdbool.h>
37 #include "fsl_device_registers.h"
38 
39 /* ----------------------------------------------------------------------------
40    -- Core clock
41    ---------------------------------------------------------------------------- */
42 
43 uint32_t SystemCoreClock = DEFAULT_SYSTEM_CLOCK;
44 
45 /* ----------------------------------------------------------------------------
46    -- SystemInit()
47    ---------------------------------------------------------------------------- */
48 
SystemInit(void)49 __attribute__((weak)) void SystemInit(void)
50 {
51     SystemInitHook();
52 }
53 
54 /* ----------------------------------------------------------------------------
55    -- SystemInitHook()
56    ---------------------------------------------------------------------------- */
57 
SystemInitHook(void)58 __attribute__((weak)) void SystemInitHook(void)
59 {
60     /* Void implementation of the weak function. */
61 }
62