/* ** ################################################################### ** Processors: MIMXRT735SGAWAR ** MIMXRT735SGFOA ** ** Reference manual: iMXRT700RM Rev.2 DraftA, 05/2024 ** Version: rev. 2.0, 2024-05-28 ** Build: b240614 ** ** Abstract: ** Provides a system configuration function and a global variable that ** contains the system frequency. It configures the device and initializes ** the oscillator (PLL) that is part of the microcontroller device. ** ** Copyright 2016 Freescale Semiconductor, Inc. ** Copyright 2016-2024 NXP ** SPDX-License-Identifier: BSD-3-Clause ** ** http: www.nxp.com ** mail: support@nxp.com ** ** Revisions: ** - rev. 1.0 (2022-09-15) ** Initial version. ** - rev. 2.0 (2024-05-28) ** Rev2 DraftA. ** ** ################################################################### */ /*! * @file MIMXRT735S_ezhv * @version 1.0 * @date 2024-06-14 * @brief Device specific configuration file for MIMXRT735S_ezhv * (implementation file) * * Provides a system configuration function and a global variable that contains * the system frequency. It configures the device and initializes the oscillator * (PLL) that is part of the microcontroller device. */ #include #include #include "fsl_device_registers.h" /* ---------------------------------------------------------------------------- -- Core clock ---------------------------------------------------------------------------- */ uint32_t SystemCoreClock = DEFAULT_SYSTEM_CLOCK; /* ---------------------------------------------------------------------------- -- SystemInit() ---------------------------------------------------------------------------- */ __attribute__((weak)) void SystemInit(void) { SystemInitHook(); } /* ---------------------------------------------------------------------------- -- SystemInitHook() ---------------------------------------------------------------------------- */ __attribute__((weak)) void SystemInitHook(void) { /* Void implementation of the weak function. */ }