专家
公告
财富商城
电子网
旗下网站
首页
问题库
专栏
标签库
话题
专家
NEW
门户
发布
提问题
发文章
51单片机
读不出数据,麻烦帮忙看看我到底错在哪了。。
2019-07-15 13:34
发布
×
打开微信“扫一扫”,打开网页后点击屏幕右上角分享按钮
站内问答
/
51单片机
8367
2
1462
求助各位大神,刚学习
单片机
,想做个简单的计步器。选的是90c516rd
芯片
和adxl362加速度传感器,但是现在发现一直从362芯片中读不出数据,按照下面的程序一直输出的都是255,麻烦帮忙看看我到底错在哪了。。卡了两个星期。。。
接线如下
vin 3.3v
电源
GND 接地
SCL P1^0
SDA P1^1
SDO P1^2
CS P1^3
程序如下:
#include <reg52.h>#include <intrins.h>#define unchar unsigned char#define unint unsigned int unchar tt[]="0123456789";sbit lcden = P2^7;sbit lcdrs = P2^6;sbit lcde = P2^5;#define delayNOP(); {_nop_();_nop_();_nop_();_nop_();}; sbit SCL = P1^0;sbit SDA = P1^2;sbit SDO = P1^1;sbit CS = P1^3; void delay(unint z){unint x;unint y ;for(x=z;x>0;x--)for(y=110;y>0;y--);} void write_com(unchar com){lcde=0;lcdrs = 0;P0 = com;delay(5);lcden=1;delay(5);lcden=0;} void write_data(unchar da){lcdrs = 1;lcde=0;P0 = da;delay(5);lcden=1;delay(5);lcden=0;} void init (){// dula =0;// wela =0;lcden=0;write_com(0x38);write_com(0x0e);write_com(0x06);write_com(0x01);write_com(0x80);} //////////////////////////////////////////////////void SPISendByte(unsigned char ch) { unsigned char idata n=8; // 向SDA上发送一位数据字节,共八位 SCL = 1 ; //时钟置高 CS = 0 ; //选择从机 while(n--) { delayNOP(); SCL = 0 ; //时钟置低 if((ch&0x80) == 0x80) // 若要发送的数据最高位为1则发送位1 { SDA = 1; // 传送位1 } else{ SDA = 0; // 否则传送位0 } delayNOP(); ch = ch<<1; // 数据左移一位 SCL = 1 ; //时钟置高 } } //-------------------------------------------------------------------------------------------------- // 函数名称: SPIreceiveByte // 返回接收的数据 // 函数功能: 接收一字节子程序 //-------------------------------------------------------------------------------------------------- unsigned char SPIreceiveByte() { unsigned char idata n=8; // 从MISO线上读取一上数据字节,共八位 unsigned char tdata; SCL = 1; //时钟为高 CS = 0; //选择从机 while(n--) { delayNOP(); CS = 0; //时钟为低 delayNOP(); tdata = tdata<<1; // 左移一位,或_crol_(temp,1) if(SDO == 1) tdata = tdata|0x01; // 若接收到的位为1,则数据的最后一位置1 elsetdata = tdata&0xfe; // 否则数据的最后一位置0 SCL=1; } return(tdata); } //-------------------------------------------------------------------------------------------------- // 函数名称: SPIsend_receiveByte // 入口参数: ch // 返回接收的数据 // 函数功能:串行输入/输出子程序 //-------------------------------------------------------------------------------------------------- unsigned char SPIsend_receiveByte(unsigned char ch) { unsigned char idata n=8; // 从MISO线上读取一上数据字节,共八位 unsigned char tdata; SCL = 1; //时钟为高 CS = 0; //选择从机 while(n--) { delayNOP(); SCL = 0; //时钟为低 delayNOP(); { tdata = tdata<<1; // 左移一位,或_crol_(temp,1) if(SDO == 1) tdata = tdata|0x01; // 若接收到的位为1,则数据的最后一位置1 elsetdata = tdata&0xfe; // 否则数据的最后一位置0 } { if((ch&0x80) == 0x80) // 若要发送的数据最高位为1则发送位1 { SDA = 1; // 传送位1 } else{ SDA = 0; // 否则传送位0 } ch = ch<<1; // 数据左移一位 } SCL=1; } return(tdata); } //////////////////////////// unint cc ;unint num ; void wri(unint xx){if(xx/10000!=0){write_data(tt[xx/10000]);}if((xx%10000)/1000!=0){write_data(tt[(xx%10000)/1000]);}if((xx%1000)/100!=0){write_data(tt[(xx%1000)/100]);}if((xx%100)/10!=0){write_data(tt[(xx%100)/10]);}if((xx%10)!=0){write_data(tt[xx%10]);}}void mminit(){ SPISendByte(0x03);SPISendByte(0x01);SPISendByte(0x08);SPISendByte(0x00);SPISendByte(0x09);SPISendByte(0x00);SPISendByte(0x0A);SPISendByte(0x00);} void main(){ init();mminit();while(1){write_com(0x01);write_com(0x80);//x轴SPISendByte(0x0B);SPISendByte(0x0E);wri(SPIsend_receiveByte(0x0E));num++;delay(3000);} }
友情提示:
此问题已得到解决,问题已经关闭,关闭后问题禁止继续编辑,回答。
2条回答
小鲜123
2019-07-15 17:51
哦哦,我试下看看,谢谢了
加载中...
查看其它2个回答
一周热门
更多
>
相关问题
【东软载波ESF0654 PDS开发板活动】开箱
1 个回答
东软载波ESF0654 PDS开发板外部中断
1 个回答
东软载波ESF0654 PDS开发板高级控制定时器AD16C4T
1 个回答
用串口调试助手为什么只能在hex模式接收发送而在文本模式不行
9 个回答
触摸芯片SC02B/SC04B在地砖灯的设计方案
1 个回答
相关文章
51单片机与蓝牙模块连接
0个评论
51单片机的硬件结构
0个评论
基于51单片机的无线遥控器制作
0个评论
51单片机 AD转换
0个评论
51单片机数码管递增显示
0个评论
如何实现对单片机寄存器的访问
0个评论
基于51单片机的指纹密码锁
0个评论
×
关闭
采纳回答
向帮助了您的知道网友说句感谢的话吧!
非常感谢!
确 认
×
关闭
编辑标签
最多设置5个标签!
51单片机
保存
关闭
×
关闭
举报内容
检举类型
检举内容
检举用户
检举原因
广告推广
恶意灌水
回答内容与提问无关
抄袭答案
其他
检举说明(必填)
提交
关闭
×
打开微信“扫一扫”,打开网页后点击屏幕右上角分享按钮
×
付费偷看金额在0.1-10元之间
确定
×
关闭
您已邀请
0
人回答
查看邀请
擅长该话题的人
回答过该话题的人
我关注的人
一周热门 更多>