Do_SRAM.H
上传用户:zanguozi01
上传日期:2014-02-19
资源大小:155k
文件大小:0k
源码类别:

GPS编程

开发平台:

Others

  1. #ifndef __Do_SRAM_H
  2. #define __Do_SRAM_H
  3. #define RD                (0x0002) //P3.1
  4. #define WR                 (0x0004) //P3.2
  5. #define LE                 (0x0008) //P3.3
  6. void SRAM_Init(void);
  7. void SRAM_Write(unsigned int ByteAddress,unsigned char WriteOneByte);
  8. extern unsigned char SRAM_Read(unsigned int ByteAddress);
  9. #endif