?? nandwriter.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 + -