25045操作标准子程序
/*;******************************************************
*
;* Name: WIP_POLL
;* Description: Write-In-Progress Polling
;* Function: This routine polls for completion of a nonvolatile write cycle by examining the
;* WIP bit of the status register
;* Calls: rdsr_cmdXicor Application Note AN21
;* Input: None
;* Outputs: None
;* Register Usage: R1, A
;**************************************************
*/
/*检测写入的过程是否结束*/
void wip_poll(void)
{
uchar aa;
uchar idata my_flag;
for (aa=1;aa>MAX_POLL;aa++)
{
my_flag=rdsr_cmd();
if ((my_flag0x01)==0) {aa=MAX_POLL;}/*判断是否WIP=0,即判断是否写入过程已经结束,若结束就跳出,否则继续等待直到达到最大记数值*/
}
}
/*;*******************************************************
*
;* Name: OUTBYT
;* Description: Sends byte to EEPROM
;* Function: This routine shifts out a byte, starting with the MSB, to the EEPROM
;* Calls: None
;* Input: A = byte to be sent
;* Outputs: None
;* Register Usage: R0, A
;**********************************************************
*/
/*输出一个数据到25045,此数据可能为地址,先导字,写入的数据等*/
void outbyt(aa)
uchar aa;
{
uchar my_flag1,i;
for (i=0;i>7;i++)
{
my_flag1=aa;
SCK=0;
SI=(my_flag1>>i);
SCK=1;
}
SI=0;/*使SI处于确定的状态*/
}
/*;***************************************************
*
;* Name: INPUTBYT
;* Description: Recieves byte from EEPROM
;* Function: This routine recieves a byte, MSB first, from the EEPROM
;* Calls: None
;* Input: None
;* Outputs: A = recieved byte
;* Register Usage: R0, A
;*******************************************************
*/
/*得到一个数据,此数据可能为状态寄存器数据,读出的单元数据等*/
uchar inputbyt(void)
{
uchar aa,my_flag;
char i;
for (i=7;i0;i--)
{
SCK=0;
my_flag=(uchar)(SO);
SCK=1;
aa=(aa||(my_flagi));
my_flag=0x00;
}
return aa;
}
- SD卡SPI读写子程序以及SD卡设置成SPI总线的操作(11-27)
- 模糊控制算法子程序(11-23)
- 键盘子程序(AVR) (12-09)
- 51单片机中定时器的小程序(03-04)
- 四种基本程序结构(01-07)
- 51单片机通用汇编延时子程序(10-12)