MCUXpresso_MIMXRT1021xxxxx/middleware/mcu_bootloader/targets/MIMXRT1021/src/sram_init_MIMXRT1021.c
Yilin Sun 1cf36afbfa
Updated to SDK v2.14.0
Signed-off-by: Yilin Sun <imi415@imi.moe>
2023-08-31 23:30:31 +08:00

28 lines
779 B
C

/*
* Copyright (c) 2015 Freescale Semiconductor, Inc.
* All rights reserved.
*
* SPDX-License-Identifier: BSD-3-Clause
*/
#include "bl_context.h"
#include "bootloader_common.h"
#include "fsl_device_registers.h"
#include "memory.h"
#include "sram_init.h"
////////////////////////////////////////////////////////////////////////////////
// Code
////////////////////////////////////////////////////////////////////////////////
//! @brief Initialize address ranges of SRAM
status_t sram_init(void)
{
// In this project, the default memory map is used, so do nothing here
return kStatus_Success;
}
////////////////////////////////////////////////////////////////////////////////
// EOF
////////////////////////////////////////////////////////////////////////////////