⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 init_sdram.c

📁 This directory contains a code example that demonstrates the functionality of the general purpose t
💻 C
字号:
#include "main.h"

/********************************************************************************/
/***** InitSDRAM()															*****/
/********************************************************************************/

void InitSDRAM(void)
{

	// Check if already enabled
	if (*pEBIU_SDSTAT & SDRS) {
		*pEBIU_SDBCTL = 0x00000015;					//SDRAM Memory Bank Control Register
		ssync();
		*pEBIU_SDRRC =  0x00000817;					//SDRAM Refresh Rate Control Register
		ssync();
		*pEBIU_SDGCTL = 0x0091998b;					//SDRAM Memory Global Control Register
		ssync();
	}

}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -