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

📄 nandwriter.h

📁 一个基于s3c2410平台的monitor程序
💻 H
字号:
//================================
//Description: this file provide some method to operate the nand flash
//including earse the flash,write the program into it
//Author:Decell.Zhou
//history:
//================================
#include <stdlib.h>
#include <string.h>

#include "def.h"
#include "option.h"
#include "config.h"
#include "2410addr.h"
#include "2410lib.h"
#include "2410slib.h"
#include "timer.h"

#define BUSY 0
#define NAND_PAGE_SIZE 512
#define NAND_PAGE_MASK (NAND_PAGE_SIZE - 1)


//the nand flash write operation method
int nandWrite();

//the nand flash earse operation method
int nandErase();

⌨️ 快捷键说明

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