AD4130 Mbed IIO Firmware

Dependencies:   tempsensors sdp_k1_sdram

Revision:
2:871d585d96ee
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/app/sdram_sdpk1.h	Fri Jul 15 17:47:44 2022 +0530
@@ -0,0 +1,36 @@
+/***************************************************************************//**
+ *   @file    sdram_sdpk1.c
+ *   @brief   SDP-K1 SDRAM interafaces header file
+********************************************************************************
+ * 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.
+*******************************************************************************/
+
+#ifndef SDRAM_SDPK1_
+#define SDRAM_SDPK1_
+
+/******************************************************************************/
+/***************************** Include Files **********************************/
+/******************************************************************************/
+
+#include <stdint.h>
+
+/******************************************************************************/
+/********************** Macros and Constants Definition ***********************/
+/******************************************************************************/
+
+/* SDRAM configs for SDP-K1 */
+#define SDRAM_START_ADDRESS		(volatile int8_t *)0xC0000000
+#define SDRAM_SIZE_BYTES		(16777216)	// 16MBytes
+
+/******************************************************************************/
+/************************ Public Declarations *********************************/
+/******************************************************************************/
+
+int32_t sdram_init(void);
+
+#endif	/* end of SDRAM_SDPK1_ */