Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: sdp_k1_sdram
app/sdram_sdpk1.c
- Committer:
- Janani Sunil
- Date:
- 2022-06-09
- Revision:
- 0:5ad86d8d396a
File content as of revision 0:5ad86d8d396a:
/***************************************************************************//**
* @file sdram_sdpk1.c
* @brief SDP-K1 SDRAM interafaces
********************************************************************************
* Copyright (c) 2022 Analog Devices, Inc.
* All rights reserved.
*
* This software is proprietary to Analog Devices, Inc. and its licensors.
* By using this software you agree to the terms of the associated
* Analog Devices Software License Agreement.
*******************************************************************************/
/******************************************************************************/
/***************************** Include Files **********************************/
/******************************************************************************/
#include "sdp_k1_sdram.h"
#include "no_os_error.h"
/******************************************************************************/
/************************ Functions Definitions *******************************/
/******************************************************************************/
/**
* @brief Initialize the SDRAM
* @return 0 in case of success, negative error code otherwise
*/
int32_t sdram_init(void)
{
if (SDP_SDRAM_Init() != SDRAM_OK) {
return -EIO;
}
return 0;
}

