cpubbs论坛

 找回密码
 注册

QQ登录

只需一步,快速开始

LabVIEW+单片机学习套件全套教程资料下载[免费]LabVIEW论坛精华列表贴USB0816数据采集卡《LabVIEW宝典》
LabWindows/CVI论坛精华贴NET0816以太网数据采集卡RC0210远程设备授权系统 关闭关停锁定打开设备 户外分布式数据采集
NET1624低速高精度以太网数据采集卡WIFI0824SD无线WIFI网络数据采集卡脱机运行 SD存储 小尺寸微型 串口采集远程采集 安卓 手持移动采集 纪录仪
查看: 1605|回复: 0

对24c16卡读写操作===源程序[转载]

[复制链接]
发表于 2004-11-6 02:21:03 | 显示全部楼层 |阅读模式
<B>对24c16卡读写操作===源程序(清风徐徐)</B></P>
//=======================================
//功能:对24c16卡读写操作
//改写:清风徐徐(改自[永远不开的壶]程序)
//时间:2004.5.17
//qq:  78779514
//更多源代码:http://www.qfmcu.com
//======================================
#include &lt;reg52.h&gt;
#include&lt;intrins.h&gt;

#define uchar unsigned char
#define uint unsigned int
#define ulong unsigned long

unsigned char a[]="0123456789";

/*---------------------------------------------
读写24C16标准程序段
完成日期:03/7/9
作者:reed
-------------------------------------------*/
//#include"main.h"
sbit SDA=P1^1;
sbit SCL=P1^0;
/*-----------------------------------------------
调用方式:void start_bit(void)
函数说明:开始位
-----------------------------------------------*/
void start_bit(void)
{
SCL=1;_nop_();
SDA=1;_nop_();
SDA=0;_nop_();
SCL=0;_nop_();
}
/*-----------------------------------------------
调用方式:void stop_bit(void)
函数说明:停止位
-----------------------------------------------*/
void stop_bit(void)
{
SDA=0;_nop_();
SCL=1;_nop_();
SDA=1;_nop_();
}
/*-----------------------------------------------
调用方式:void mast_ack(void)
函数说明:主答函数
-----------------------------------------------*/
void mast_ack(void)
{
SCL=0;_nop_();
SDA=0;_nop_();
SCL=1;_nop_();
SCL=0;_nop_();
SDA=1;_nop_();
}
/*-----------------------------------------------
调用方式:void ack(void)
函数说明:应答函数
-----------------------------------------------*/
void ack(void)
{
SDA=1;
SCL=0;_nop_();
SCL=1;_nop_();
while(SDA){;}
SCL=0;_nop_();
}
/*-----------------------------------------------
调用方式:void no_ack(void)
函数说明:无需应答位,在读程序中用到
-----------------------------------------------*/
void no_ack(void)
{
SDA=1;_nop_();
SCL=1;_nop_();
while(SDA){;}
SCL=0;_nop_();
}
/*-----------------------------------------------
调用方式:write_8bit(uchar ch)
函数说明:写一个字节(8位)数据
-----------------------------------------------*/
write_8bit(uchar ch)
{
uchar i=8;
SCL=0;_nop_();
while(i--)
{
SDA=(bit)(ch&amp;0x80);_nop_();
ch&lt;&lt;=1;
SCL=1;_nop_();
SCL=0;_nop_();
}
}
/*----------------------------------------------
调用方式:uchar read24c16(uint address)
函数说明:读24c16指定地址数据(字节读)
-----------------------------------------------*/
uchar read24c16(uint address)
{
uchar data rdata;
uchar i=8;
EA=0;//避免与串口通讯等中断冲突
start_bit();
write_8bit(0xA0);
ack();
write_8bit(address);
ack();//伪写
start_bit();
write_8bit(0xA1);
ack();
while(i--)
{
rdata&lt;&lt;=1;
SCL=0;_nop_(); SCL=1;
if(SDA) rdata|=0x01;
}
no_ack();
stop_bit();
EA=1;
return rdata;
}
/*-----------------------------------------------
调用方式:void write24c16(uint address,uchar ddata)
函数说明:写数据到24c16的指定地址(字节写)
-----------------------------------------------*/
void write24c16(uint address,uchar ddata)
{
EA=0;  //避免与串口通讯等中断冲突
start_bit();
write_8bit(0xA0);
ack();
write_8bit(address);
ack();
write_8bit(ddata);
ack();
stop_bit();
EA=1;
}
/*-----------------------------------------------
调用方式:void page_wr(uint firstw_ad,uint counter,uint data *firstr_ad)
函数说明:页面写函数,firstw_ad为写入字节单元的首地址,
          *firstr-ad为被写入数据所在首地址指针
          counter为写入数据字节数
-----------------------------------------------*/
void page_wr(uint firstw_ad,uint counter,uchar firstr_ad)
{
uchar data *ufirstr_ad;
ufirstr_ad=firstr_ad;
start_bit();
write_8bit(0xA2);
ack();
write_8bit(firstw_ad);
ack();
while(counter--)
{
write_8bit(*ufirstr_ad);
ufirstr_ad++;
ack();
}
stop_bit();
}
/*-----------------------------------------------
调用方式:void page_rd(uint firstrd_ad,uint count,uint firstwr_ad)
函数说明:页面读函数,firstrd-ad为所读字节首地址,count为读字节数
           *ufirstwr-ad为读出数据存储首地址指针
-----------------------------------------------*/
void page_rd(uint firstrd_ad,uint count,uchar firstwr_ad)
{
uchar j=8;
uchar data *ufirstwr_ad;
ufirstwr_ad=firstwr_ad;
start_bit();
write_8bit(0xA2);
ack();
write_8bit(firstrd_ad);
ack();
start_bit();
write_8bit(0xA3);
ack();
while(count--)
{
uchar i=8;
while(i--)
{
(*ufirstwr_ad)&lt;&lt;=1;
SCL=0;_nop_();_nop_();SCL=1;
if(SDA) (*ufirstwr_ad)|=0x01;
}
ufirstwr_ad++;
mast_ack();
}
while(j--)
{
(*ufirstwr_ad)&lt;&lt;=1;
SCL=0;_nop_();_nop_();SCL=1;
if(SDA) (*ufirstwr_ad)|=0x01;
}
no_ack();
stop_bit();
}

void main(void)
{
while(1)
  {
   page_wr(1,10,a);
  }
}
您需要登录后才可以回帖 登录 | 注册

本版积分规则

Archiver|手机版|cpubbs论坛. ( 粤ICP备09171248号 )

GMT+8, 2025-4-4 14:04 , Processed in 0.538421 second(s), 7 queries , Gzip On, File On.

Powered by Discuz! X3.4

© 2001-2017 Comsenz Inc.

快速回复 返回顶部 返回列表