?? ppflash.h
字號:
///////////////////////////////////////////////////////////////////////////////////////
//NAME: ppflash.h (AMD Parallel Flash Programmer)
//DATE: 9/18/03
//PURPOSE: contains the definitions and declarations for use across the project files
////////////////////////////////////////////////////////////////////////////////////////
#ifndef _PPFLASH_H_
#define _PPFLASH_H_
//Include the ADSP-21262 Definition file
#include <def21262.h>
#include <cdef21262.h>
//LED address on the ADSP-21262 Ezkit Lite
#define LED_ADDRESS 0x1400000
//Sector Size for the AMD Am29LV081B
#define SECTOR_SIZE 0x10000
//Declarations of buffers and subroutines used between files
extern int ppInterruptFlag;
extern void blockWrite(int *, int *, int);
extern void flashReset(int *);
extern void sectorErase(int *, int);
extern void programBlock(int *, int *, int);
extern void verifyBlock(int *, int *, int);
extern void writeToPP(int *, int *, int);
extern int readFromPP(int *);
extern int pollFlash(int *);
extern void writeToLEDs(int);
extern void ppInterruptHandler(int);
#endif
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -