读写24LCxx系列的EEPROM的实例程序

发布者:Weasel最新更新时间:2018-03-12 来源: eefocus关键字:读写24LCxx系列  EEPROM 手机看文章 扫描二维码
随时随地手机看文章

读写24LCxx系列的EEPROM的实例程序

;********************************************************  
;*                    *
;*    ? PIC16F877A ?I2C Master 家Α???﹃?Α EEPROM ?絛ㄒ祘Α  *
;*                                                  *
;* Written by:  Richard Yang                                *
;*              Sr. Corporate Application Engineer            *
;*              MicroChip Technology Inc.                *
;* Date:        Oct. 2nd '2002                            *
;* Revision: 1.00                                    *
;********************************************************


;*************************************************
; This source code provides a demonstration of the MSSP peripheral
; on the PIC16F87x MCU.  
;
;
;***********      The subroutines for EEPROM      *****************
;
; EE_Random_Read  ; EEPROM Random address Read from EEPROM
; EE_SEQU_Read  ; EEPROM Sequential Read form EEPROM
; EE_Ack_Check  ; Polling current status of EEPROM 
; EE_Page_Write  ; Page Write function for EEPROM
; EE_Byte_Write  ; Write a byte to EEPROM with address setting
;
;***********      The subroutines for I2C      *****************
;
; Init_I2C_Master  ; Initial I2C Module for Master Mode , 7-bit address
; StartI2C  ; Send a START Condition !!
; StopI2C  ; Send s STOP Condition
; RstartI2C  ; Send a Repeat Start conditional to I2C
; Non_Ack  ; Send a Non-acknowLEDge signal to I2C
; An_Ack  ; Send a acknowledge signal to I2C
; Sebd_Byte  ; Send a byte to I2C bus
; RecI2C    ; Enable Read a byte form slave device
; I2C_Done  : Wait the I2C completed the currect process
;
;***************************************************

  list p=16f877a
  #i nclude

;
;***************************************
;      ﹚竡跑计?RAM???
;
  CBLOCK 0x20

  I2C_CTRl  
  I2C_Addr
  I2C_Data
  I2C_Page_Length
  D_Count
  ENDC
  cblock 0x40
  I2C_Page_Buffer:8
  I2C_SEQU_Buffer:8
  endc
;
;***************************************
;      ﹚竡い耞?既?竟??

w_temp  EQU 0x72
status_temp EQU 0x73
pclath_temp EQU 0x74 
;
;***************************************
;      ﹚竡 I2C ???の竲?
;
EEPROM_CMD equ 0xA0  ; Device adress of Slave Point
EE_Read  equ .1
EE_Write equ .0

;
#define  SCL PORTC,3  ; I2C SCL PIN
#define  SDA PORTC,4  ; I2C SDA pin

;

;********************************************
; Locates startup code @ the reset vector
;********************************************
Reset_Addr
  org  0x00
  nop
  goto Main_Init
;
  org  0x04
  goto ISR 
;
;*************************************************************
;**** The Start Address of ISR is 0x004
;**** "PUSH" & "POP" ?ㄏノ絛ㄒ : 続ノ?钩 PIC16F877 ΤSHARE BANK ?PIC
;**************************************************************
ISR  
Push  movwf  w_temp            ; save off current W register contents
  movf STATUS,w          ; move status register into W register
  movwf status_temp        ; save off contents of STATUS register
  movf PCLATH,W
  movwf pclath_temp
;  
;        Put your interrupt code here
;
Pop  movf pclath_temp,W
  movwf PCLATH
  movf    status_temp,w    ; retrieve copy of STATUS register
  movwf STATUS            ; restore pre-isr STATUS register contents
  swapf  w_temp,f
  swapf  w_temp,w          ; restore pre-isr W register contents
;
  retfie                    ; return from interrupt 
  
 
;----------------------------------------------------------------------

Main_Init  
  pagesel Init_I2C_Master  ; Set PAGE to PCLATH Register 
      call    Init_I2C_Master  ; Init the MSSP for I2C Master 
;
      banksel I2C_Ctrl
  movlw EEPROM_CMD  ; Load EEPROM command address @ 0xA0
  movwf I2C_Ctrl
;
;
Main 
;
;----------------------------------------------------------------------
;
;* ???代刚祘Α穦?盢?舱计?(0x40-0x47)糶??RMA0x40-0x47??竚      
;* ?ノPage Write?よΑ盢8??じ舱?戈?糶? EEPROM ?                  
;* 秈︽?篈?盎代EEPROM琌??ЧΘ糶??笆??程?盢?糶                  
;* ??戈??Sequential Read?よΑ眖EEPROM弄?ㄓ??I2C_SEQU_Bufferい    
;

Test_Page_RW
  movlw 0x08
  movwf I2C_Page_Length
  movlw I2C_Page_Buffer
_Fill_RAM movwf FSR
  movwf INDF
  incf FSR,W
  decfsz I2C_Page_Length,F
  goto _Fill_RAM
;    
Test_Page_Write
;  banksel I2C_Ctrl
  movlw EEPROM_CMD  ; Load EEPROM command address @ 0xA0
  movwf I2C_Ctrl
  movlw 0x10    ; Select EEPROM location at 0x00
  movwf I2C_Addr
  movlw .8
  movwf I2C_Page_Length
  call EE_Page_Write
;
  call EE_Ack_Check
;
  banksel I2C_Ctrl
  movlw EEPROM_CMD  ; Load EEPROM command address @ 0xA0
  movwf I2C_Ctrl
  movlw 0x10
  movwf I2C_Addr
  movlw .8
  movwf I2C_Page_Length
  call EE_SEQU_Read
;
  goto $
;
;---------------------------------------------------------
;
;* ???代刚祘Α穦?糶????じ舱?戈?糶? EEPROM い                
;* ?秈︽?篈?盎代琌??ЧΘ糶??笆??程?盢?糶                            
;* ??戈??眖EEPROM弄?ㄓ??I2C_Data既?竟い                      
;        
Test_1byte_RW

   banksel I2C_CTRl
   movlw EEPROM_CMD   ; Load EEPROM command address @ 0xA0
   movwf I2C_Ctrl
   movlw 0x00    ; Select EEPROM LOCation at 0x00
   movwf I2C_Addr
   movlw 0xAA    ; Write data 0x5A to location 0x00 of EEPROM
   movwf I2C_Data
   call EE_Byte_Write 
;
Test2  call EE_Ack_Check  ; Polling AcknowLEDge for next aCCess
;
   banksel I2C_Data
   movlw 0x00    ; Clear I2C data buffer
   movwf I2C_Data
;
Test3 
   banksel I2C_Ctrl
   movlw EEPROM_CMD   ; Load EEPROM command address @ 0xA0
   movwf I2C_Ctrl
   movlw 0x00
   movwf I2C_Addr
   call EE_Random_Read
   ;
   goto  $ 
;

;
;******************************************************
;*           Random Read a Byte from EEPROM          
;*
;* Input:
;*     - I2C_Ctrl : Control Byte of EEPROM    
;*      - I2C_Addr : Location of EEPROM   
;* Output:
;*      - I2C_Data : Read Data from EEPROM    
;******************************************************
;
; Send Command for RANDOM READ : 
; " Start+ 0xA0 + EE_Address + ReStart + 0xA1 + Read_Data + NAck + Stop "
;

EE_Random_Read
    call StartI2C  ; Set SSPCON2.SEN

   bcf  I2C_Ctrl,0  ; set for write Command
   movf I2C_Ctrl,W  ; Send Slave Address to I2C Bus
   call Send_Byte 
;
   movf I2C_Addr,W  ; Send out the Rendom address of EEPROM  
   call Send_Byte 
;
   call RstartI2C  ; Send a Repeat Start to I2C
;
   bsf  I2C_Ctrl,0  ; set for Read Command
   movf I2C_Ctrl,W  ; Send Slave Address to I2C Bus
   call Send_Byte 
;
   call RecI2C  ; Enable I2C Receive 
;
   BANKSEL SSPBUF
   movf SSPBUF,W ; Save to I2C_Data First !! 
   movwf I2C_Data

   call Non_Ack  ; Initial NACK Response !!

   call StopI2C  ; Initial STOP Condition 
   return
;
;***************************************************************
;*                Sequential Read from EEPROM          
;*
;* Input:
;*     - I2C_Ctrl : Control Byte of EEPROM    
;*      - I2C_Addr : Start Location of EEPROM
;*     - I2C_Page_Length : How many byte need to read   
;* Output:
;*      - I2C_SEQU_Buffer : Sequential Read Data buffer 
;*   
;***************************************************************
;
; Send Command for RANDOM READ : 
; " Start+ 0xA0 + EE_Address + ReStart + 0xA1 + Read_Data + NAck + Stop "
;
EE_SEQU_Read
    call StartI2C  ; Set SSPCON2.SEN

   bcf  I2C_Ctrl,0  ; set for write Command
   movf I2C_Ctrl,W  ; Send Slave Address to I2C Bus
   call Send_Byte 
;
   movf I2C_Addr,W  ; Send out the Rendom address of EEPROM  
   call Send_Byte 
;
   call RstartI2C  ; Send a Repeat Start to I2C
;
   bsf  I2C_Ctrl,0  ; set for Read Command
   movf I2C_Ctrl,W  ; Send Slave Address to I2C Bus
   call Send_Byte 
;
   movlw I2C_SEQU_Buffer
   movwf FSR 
;
_Sequ_Loop call RecI2C   ; Enable I2C Receive 
   BANKSEL SSPBUF
   movf SSPBUF,W  ; Save to I2C_Data First !! 
   movwf INDF
   incf FSR,F
   decfsz I2C_Page_Length,F
   goto _Cont_Read
   goto _End_Read
_Cont_Read call An_Ack
   goto _Sequ_Loop
;
_End_Read call Non_Ack   ; Initial NACK Response !!
   call StopI2C   ; Initial STOP Condition 
   return
;
;******************************************************
;*              EEPROM Acknowledge Polling
;*            
;*     --  The routine will polling the ACK   
;*           response from EEPROM        
;*    --  ACK=0 return         
;*   --  ACK=1 send Restart & loop check 
;*  
;******************************************************
;
EE_Ack_Check
    call StartI2C  ; Set SSPCON2.SEN
    
   bcf  I2C_Ctrl,0  ; Clear for Write Command 
   movf I2C_Ctrl,W  ; Send Slave Address to I2C Bus
   call Send_Byte 
_Ack_Polling 
   BANKSEL SSPCON2
   btfss SSPCON2,ACKSTAT ; Check ACKSTAT bit , 0 = ACK , 1 = NACK
   goto ACK_Return  ; Ack = 0 ; EEPROM is Ready
_Ack_Hi        ; Ack = 1 ; EEPROM is Busy for Write
   call Delay_mS  ; Delay 500uS for next Ack polling
   call RstartI2C  ; Send a Repeat Start to I2C
   bcf  I2C_Ctrl,0  ; Clear for Write Command
   movf I2C_Ctrl,W  ; Send Slave Address to I2C Bus
   call Send_Byte 
   goto _Ack_Polling
 
ACK_Return 
   call StopI2C   ; Initial STOP Condition 
   return
;
;**********************************************************
;*           Page Write 1 to 8 Bytes to EEPROM         
;*
;*  Input: 
;*     - I2C_Ctrl : Control Byte of EEPROM   
;*     - I2C_Addr : Location of EEPROM   
;*   - I2C_Page_Buffer: RAM location of Data 
;*     - I2C_Page_Length : Data length count 
;*   
;**********************************************************
;
; Send Command for PAGE WRITE : 
; " Start+ 0xA0 + EE_Address + W_Data 0+ .. + W_Data N + Stop "
;
EE_Page_Write
   movf I2C_Page_Length,W
   btfsc STATUS,Z
   return
;   
    call StartI2C  ; Set SSPCON2.SEN

   bcf  I2C_Ctrl,0  ; Clear for Write Command
   movf I2C_Ctrl,W  ; Send Slave Address to I2C Bus
   call Send_Byte 
;
   movf I2C_Addr,W  ; Send out the Command  
   call Send_Byte 
;
   movlw I2C_Page_Buffer
   movwf FSR
_W1   movf INDF,W
   call Send_Byte 
   incf FSR,F
   decfsz I2C_Page_Length,F
   goto _W1
;
    call StopI2C   ; Initial STOP Condition 
   return
;
;
;*******************************************************
;*               Write a Byte to EEPROM                
;*
;* Input:
;*     - I2C_Ctrl : Control Byte of EEPROM    
;*      - I2C_Addr : Location of EEPROM   
;*      - I2C_Data : Data to EEPROM

;*   
;*******************************************************
;
; Send Command for BYTE WRITE : 
; " Start+ 0xA0 + EE_Address + Write_Data + Stop "
;
EE_Byte_Write
    call StartI2C  ; Set SSPCON2.SEN

   bcf  I2C_CTRl,0  ; Clear for Write Command
   movf I2C_Ctrl,W  ; Send Slave Address to I2C Bus
   call Send_Byte 
;
   movf I2C_Addr,W  ; Send out the Command  
   call Send_Byte 
;
   movf I2C_Data,W  ; Send out the Data 
   call Send_Byte 
;
    call StopI2C   ; Initial STOP Condition 
   return
;
;**********************************************************************
;
;   As following subroutines perform commonly used I2C functions.
;      You CAN use these subroutines for your I2C aCCess
;
;**********************************************************************
;
;*** Initial I2Cmodule fot 7-bit I2C Master Mode with 100Kcps @4MHz
;
Init_I2C_Master     
   BANKSEL TRISC   ; Initial PortC,bit 3 & 4 as Input
    bsf  SCL    ; RC3 = SCL  ,  RC4 = SDA
   bsf  SDA   
;
    BANKSEL PORTC
    bsf  SCL    ; SCL = Hi
    bsf  SDA    ; SDA = Hi
;
   movlw b'00101000'  ; I2C Master Mode, CLOCk Rate: FOSC/(4*SSPADD+1)
   movwf SSPCON   ; 
;
         banksel SSPADD
         movlw   .9              ; This gives 100KHz I2C clock @ 4MHz
   movwf   SSPADD   ; (4MHz/4) / (9+1)= 100KHz
;
       movlw   b'10000000'     ; DISAble slew rate control,
         movwf   SSPSTAT   ; and clear status bits
;
          movlw   b'00000000'     ; Set SCL,SDA into Ready status
         movwf   SSPCON2          
;     
   return
;
;******   Send START condition to bus   *******
;
StartI2C    ; Initiate the I2C START condition.
         banksel SSPCON2
          bsf     SSPCON2,SEN
         goto I2C_Done
;
;******   Send STOP condition to bus   *******
;
StopI2C     
        banksel SSPCON2
         bsf     SSPCON2,PEN
         goto I2C_Done
;
;******   Send RESTART condition to bus   *******
;      
RstartI2C    
         banksel SSPCON2
         bsf     SSPCON2,RSEN
         goto I2C_Done
;
;******   Send a Non-AcknowLEDge status to bus (ACK=1)    *******
;        
Non_Ack
         banksel SSPCON2
         bsf     SSPCON2,ACKDT    ; Set the ACK bit
         bsf     SSPCON2,ACKEN    ; Initiate the NACK sequence.
         goto I2C_Done
;
;******   Send an Acknowledge status to bus (ACK=0)     *******
;         
An_Ack
          banksel SSPCON2
         bcf     SSPCON2,ACKDT    ; Clear the ACK bit
         bsf     SSPCON2,ACKEN    ; Initiate the NACK sequence.
         goto I2C_Done
;
;******   Send data to I2C bus from Wreg.     *******

Send_Byte
   banksel SSPBUF
   movwf SSPBUF
   goto I2C_Done
;
;******   Enable I2C Receive for Master Mode     *******

RecI2C
        banksel SSPCON2          
         bsf     SSPCON2,RCEN    ; Set the receive enable bit.
   goto I2C_Done
;
;******  Check the I2C stage is completed   ********

I2C_Done
         banksel PIR1
    btfss   PIR1,SSPIF ; Poll for SSPIF
         goto    $-1
         bcf     PIR1,SSPIF
         return
;
Delay_mS
   banksel D_Count
   movlw .124   ; Load .5mS Dealy Value
    movwf D_Count    
_D_mS  nop
   decfsz D_Count,F   
   goto _D_mS  
   return          
;
; *********** End Of Program !!!!!
;
   end

关键字:读写24LCxx系列  EEPROM 引用地址:读写24LCxx系列的EEPROM的实例程序

上一篇:使用PIC读写1-wire EEPROM DS2430的实例
下一篇:PIC16Fxxx的LCD驱动程序(适用于HD44780兼容的驱动器)

推荐阅读最新更新时间:2024-03-16 15:57

STM8 AT24CXX使用I2C接口读写EEPROM子程序
软件设计 /********************************************************************* 目 的: 建立AT24CXX操作库 目标系统: 基于STM8单片机 应用软件: Cosmic CxSTM8 *********************************************************************/ #define WD_DADR 0xa0 #define RD_DADR 0xa1 #include ws_i2c.h void AT24CXX_Init(void) { I2C_Init(); } void AT
[单片机]
初学24CXX系列EEPROM使用详解&STM32库函数I2C总线
24CXX系列芯片属于EEPROM(Electrically Erasable Programmable read only memory)即电可擦可编程只读存储器,是一种掉电后数据不丢失(不挥发)存储芯片。 24CXX系列芯片数据说明:见下表(只做参考,只表明常用24CXX器件的常用数据,具体使用请查阅器件数据手册): 如24C02BN容量=2KB,但写缓冲区(页容量)=8K 1、“型号”:24Cxx系列型号的标称C后面的参数代表其存储容量大小,单位为KB,这里的1KB=1024bit; 2、“存储容量”:24Cxx系列存储数据为8位(bit)格式,根据其容量可以计算出各型号具体存储数据的字节(Byte)数; 3
[单片机]
PIC内部EEPROM的操作
1.方法一: PIC内部EEPROM的操作 //-------------------------------------------------------- //EEPROM字节写程序 //功能: 写一个字节到内部EEPROM //入口: EEADR =地址 // EEDATA =数据 //-------------------------------------------------------- void write_eeprom ( void ) { // while ( WR ) //等待上一次写操作结束 // { // asm ( clrwdt ); //喂狗 // } EEPGD = 0 ; /
[单片机]
ATmega48 EEPROM数据存储器
ATmega48/88/168包含256/512/512字节的EEPROM数据存储器。它是作为一个独立的数据 EEPROM 的寿命至少为 100,000 次擦除周期。 EEPROM 的访问由地址寄存器,数据寄存器和控制寄存器决定。 具体的 SPI 及并行下载 EEPROM 数据请参见 P254“存储器编程”。 EEPROM 读/ 写访问 EEPROM 读/ 写访问EEPROM 的访问寄存器位于I/O 空间。 EEPROM的写访问时间由Table 3给出。自定时功能可以让用户软件监测何时可以开始写下一字节。用户操作EEPROM 需要注意如下问题:在电源滤波时间常数比较大的电路中,上电/ 下电时VCC 上升/ 下降速度会比较慢。此时C
[单片机]
ATmega48 <font color='red'>EEPROM</font>数据存储器
N76E003之模拟EEPROM
在使用STM32时,常可以将内部1flash的一部分划作数据储存区(EEPROM),用于掉电后的数据保存。而N76E003单片机也可实现类似的功能。 下图为N76E003的内存分配图,我们可以从下图中看到APROM使用的地址范围(APROM + LDROM = 18K,当LDROM为0时,APROM的地址为0000~0x47FF) 下面的程序为新唐官方所给出的例程,我只进行了粗浅的注释 //*********************************************************************************************************** // File
[单片机]
N76E003之模拟<font color='red'>EEPROM</font>
单片机学习——IIC总线及EEPROM实验之一
题目:简单的流水灯实验。用EEPROM实现。 解决方案:(c语言编程) #include reg52.h #include intrins.h #define uchar unsigned char #define uint unsigned int uchar code table ={0xfe,0xfd,0xfb,0xf7,0xef,0xdf,0xbf,0x7f ,0x7f,0xbf,0xdf,0xef,0xf7,0xfb,0xfd,0xfe}; void delay1(uint); sbit scl=P3^3; sbit sda=P3^4; void delay() //短延时子程序 { ;; } void i
[单片机]
51读写串行EEPROM芯片at2402程序(C)
/* Name:AT24C02 存储器 的读写程序,用到I2C总线,含相对独立的I2C总线读写函数 */ #include #include #include #define DELAY_TIME 60 /*经实验,不要小于50!否则可能造成时序混乱*/ #define TRUE 1 #define FALSE 0 sbit SCL=P1^7;/*假设由P1.7和P1.6控制*/ sbit SDA=P1^6; /********** Function Definition 函数定义 ************/ void DELAY(unsigned int t) /*延时函数*/ {
[单片机]
如何提高FLASH使用寿命以实现EEPROM的功能呢 ?
一、 stm32的FLASH擦除是按整页或者整扇区擦除的,不同芯片的页或者扇区(下边统称为页)的大小是不一样的,有1K,16K,64K,128K等大小。 现在我们想要 存3个不同16bit变量的数据,1秒存一次 ,如果不做任何算法,将这3个变量存到3个不同的页的16bit地址,每次更改变量内容都要擦除一次整页(但是我们只使用了16bit的空间),根据芯片数据手册可知,保证性能的情况下flash最少擦除次数为10K,1万次。 我们就按1万次计算,理论上不到3小时我们使用的16bit地址就有损坏的风险。而且要存储的变量个数也有限,我们芯片不可能有那么多页,H7系列也就16页。所以需要一些算法处理,充分利用页的空间。 二、E
[单片机]
如何提高FLASH使用寿命以实现<font color='red'>EEPROM</font>的功能呢 ?
小广播
添点儿料...
无论热点新闻、行业分析、技术干货……
设计资源 培训 开发板 精华推荐

最新单片机文章
何立民专栏 单片机及嵌入式宝典

北京航空航天大学教授,20余年来致力于单片机与嵌入式系统推广工作。

换一换 更多 相关热搜器件
电子工程世界版权所有 京B2-20211791 京ICP备10001474号-1 电信业务审批[2006]字第258号函 京公网安备 11010802033920号 Copyright © 2005-2024 EEWORLD.com.cn, Inc. All rights reserved