AT45DB041存儲(chǔ)芯片讀寫程序,適用于51單片機(jī)_第1頁(yè)
AT45DB041存儲(chǔ)芯片讀寫程序,適用于51單片機(jī)_第2頁(yè)
AT45DB041存儲(chǔ)芯片讀寫程序,適用于51單片機(jī)_第3頁(yè)
AT45DB041存儲(chǔ)芯片讀寫程序,適用于51單片機(jī)_第4頁(yè)
AT45DB041存儲(chǔ)芯片讀寫程序,適用于51單片機(jī)_第5頁(yè)
免費(fèi)預(yù)覽已結(jié)束,剩余1頁(yè)可下載查看

下載本文檔

版權(quán)說(shuō)明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請(qǐng)進(jìn)行舉報(bào)或認(rèn)領(lǐng)

文檔簡(jiǎn)介

1、/*這個(gè)程序原本是從論壇上下載的,但是用到51單片機(jī)中不能使用,只能一次寫一個(gè)字節(jié),經(jīng)過(guò)高手的修改,已經(jīng)能夠用在51中。2011.07.27*/*/ /*正常操作電壓為2.73.6v,實(shí)驗(yàn)中發(fā)現(xiàn)當(dāng)電壓超過(guò)4.25v后讀出的狀態(tài)字節(jié)為9a(正常 */ /*的狀態(tài)字節(jié)值為9d),并且讀寫數(shù)據(jù)均不準(zhǔn)確,所以應(yīng)當(dāng)保證卡片的供電電壓不超過(guò) */ /*4.25v。 */ /*spi規(guī)范:data is always clocked into the device on the rising edge of sck a-*/ /* nd clocked out of the device on the fa

2、lling edge of sck.all instruction-*/ /* s,addresses and data are transferred with the most significant bit(msb) */ /* first. */ /* 2005-06-02*/ /*/ #include #include #include #include #define uchar unsigned char #define uint unsigned int /=sfr p4 = 0xe8;/=sbit spi_cs = p41; sbit spi_sck = p40; sbit

3、spi_so = p43; sbit spi_si = p42; unsigned char aaa;void dyms20(void)unsigned char i;for(i=0;i30;i+) i+;unsigned char spi_hostreadbyte(void) unsigned char i,rbyte=0; for(i=0;i8;i+) spi_sck=0; dyms20(); spi_sck=1; rbyte=1; if(spi_so) rbyte |= 0x01; else rbyte &= 0x01; return rbyte; void spi_hostwriteb

4、yte(unsigned char wbyte) unsigned char i; for(i=0;i8;i+) if(wbytei)&0x80)spi_si=1; elsespi_si=0; spi_sck=0; dyms20(); spi_sck=1; dyms20(); /*/ /*status register format: */ /* - */ /* | bit7 | bit6 | bit5 | bit4 | bit3 | bit2 | bit1 | bit0 | */ /* |-|-|-|-|-|-|-|-| */ /* |rdy/busy| comp | 0 | 1 | 1 |

5、 1 | x | x | */ /* - */ /* bit7 - 忙標(biāo)記,0為忙1為不忙。 */ /* 當(dāng)status register的位0移出之后,接下來(lái)的時(shí)鐘脈沖序列將使spi器件繼續(xù)*/ /* 將最新的狀態(tài)字節(jié)送出。 */ /* bit6 - 標(biāo)記最近一次main memory page和buffer的比較結(jié)果,0相同,1不同。 */ /* bit5 */ /* bit4 */ /* bit3 */ /* bit2 - 這4位用來(lái)標(biāo)記器件密度,對(duì)于at45db041b,這4位應(yīng)該是0111,一共能標(biāo)記 */ /* 16種不同密度的器件。 */ /* bit1 */ /* bit0 -

6、 這2位暫時(shí)無(wú)效 */ /*/ unsigned char at45db041b_statusregisterread(void) unsigned char i; spi_cs=0; spi_hostwritebyte(0xd7); i=spi_hostreadbyte(); spi_cs=1; return i; /*/ /*描述: */ /* when the last bit in the main memory array has been read,the device will*/ /* continue reading back at the beginning of the

7、first page of memory.as w-*/ /* ith crossing over page boundaries,no delays will be incurred when wrapp-*/ /* ing around from the end of the array to the beginning of the array. */ /*參數(shù): */ /* pa - 頁(yè)地址,02047 */ /* bfa - 指定buffer中的起始寫入地址 */ /* pheader - 指定數(shù)據(jù)的首地址 */ /* len - 指定數(shù)據(jù)的長(zhǎng)度 */ /*/ void at45db

8、041b_continuousarrayread(uint pa,uint bfa,unsigned char *pheader,uint len) unsigned int i=0; while(i+7); spi_hostwritebyte(unsigned char)(pa8); spi_hostwritebyte(unsigned char)bfa); for(i=0;i4;i+)spi_hostwritebyte(0x00); for(i=0;ilen;i+)pheaderi=spi_hostreadbyte(); spi_cs=1; /*/ /*描述: */ /* 將指定數(shù)據(jù)寫入從

9、某個(gè)地址(0263)開始的buffer中。 */ /*參數(shù): */ /* buffer - 選擇buffer,01h選擇buffer 1,02h選擇buffer 2 */ /* 在該指令序列中,操作碼84h選擇buffer 1,87h選擇buffer 2 */ /* bfa - buffer中的起始地址,0263 */ /* pheader - 待存數(shù)據(jù)的頭指針 */ /* len - 待存數(shù)據(jù)的長(zhǎng)度1264 */ /*/ void at45db041b_bufferwrite(uchar buffer,uint bfa,uchar *pheader,uint len) unsigned in

10、t i; while(i+8); spi_hostwritebyte(unsigned char)bfa); for(i=0;ilen;i+)spi_hostwritebyte(pheaderi); spi_cs=1; void memorytobuffer(unsigned int maddr)unsigned int i;while(i+7); spi_hostwritebyte(unsigned char)(maddr1);spi_hostwritebyte(0x0); spi_cs=1; ./*/ /*描述: */ /* 將指定數(shù)據(jù)寫入從某個(gè)地址(0263)開始的頁(yè)中:包含2個(gè)動(dòng)作,首

11、先將指定數(shù)據(jù)*/ /* 寫入到buffer 1或者buffer 2中,其中可以指定buffer中的起始寫入地址,此寫入*/ /* 動(dòng)作不影響buffer中其它地址中的數(shù)據(jù),然后再將buffer中的整個(gè)數(shù)據(jù)寫入到某指*/ /* 定頁(yè)中(帶預(yù)擦除)。 */ /*參數(shù): */ /* buffer - 選擇buffer,01h選擇buffer 1,02h選擇buffer 2 */ /* pa - 頁(yè)地址,02047 */ /* bfa - 指定buffer中的起始寫入地址 */ /* pheader - 指定數(shù)據(jù)的首地址 */ /* len - 指定數(shù)據(jù)的長(zhǎng)度 */ /*/ void at45db04

12、1b_buffertomainmemorypageprogramwithbuilt_inerase(uchar buffer,uint pa,uint bfa,uchar *pheader,uint len) unsigned int i; memorytobuffer(pa); at45db041b_bufferwrite(buffer,bfa,pheader,len); while(i+7); spi_hostwritebyte(unsigned char)(pa1); spi_hostwritebyte(0x00); spi_cs=1; void main(void) unsigned char i; uchar xdata test32; i=at45db041b_statusregisterread(); memset(test,0x77,32); at45db041b_buffertomainmemorypageprogramwithbuilt_inerase(1,2047,0,test,32); memset(test,0x26,32); at45db041b_continuousarrayread(2047,0,test,32); buf31=test0; mems

溫馨提示

  • 1. 本站所有資源如無(wú)特殊說(shuō)明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請(qǐng)下載最新的WinRAR軟件解壓。
  • 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請(qǐng)聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶所有。
  • 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁(yè)內(nèi)容里面會(huì)有圖紙預(yù)覽,若沒有圖紙預(yù)覽就沒有圖紙。
  • 4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
  • 5. 人人文庫(kù)網(wǎng)僅提供信息存儲(chǔ)空間,僅對(duì)用戶上傳內(nèi)容的表現(xiàn)方式做保護(hù)處理,對(duì)用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對(duì)任何下載內(nèi)容負(fù)責(zé)。
  • 6. 下載文件中如有侵權(quán)或不適當(dāng)內(nèi)容,請(qǐng)與我們聯(lián)系,我們立即糾正。
  • 7. 本站不保證下載資源的準(zhǔn)確性、安全性和完整性, 同時(shí)也不承擔(dān)用戶因使用這些下載資源對(duì)自己和他人造成任何形式的傷害或損失。

評(píng)論

0/150

提交評(píng)論