打印
[Atmel]

仿真问题

[复制链接]
1102|4
手机看帖
扫描二维码
随时随地手机跟帖
跳转到指定楼层
楼主
沙发
wangch_sh| | 2014-7-29 14:07 | 只看该作者
原理图,程序?什么也没有,怎么分析?

使用特权

评论回复
板凳
ddllxxrr| | 2014-7-29 14:49 | 只看该作者
在输入完串行数据后打个断点,用万用表量那个时候的管脚电平,看对不对啦

使用特权

评论回复
地板
xuan_weiguan|  楼主 | 2014-7-29 14:54 | 只看该作者
wangch_sh 发表于 2014-7-29 14:07
原理图,程序?什么也没有,怎么分析?


不好意思,刚没有上传图片
代码:
#include<iom16v.h>
#include<macros.h>
#define uint unsigned int
#define uchar unsigned char
#define sclon PORTA|=BIT(0)
#define scloff PORTA&=~BIT(0)
#define dion PORTA|=BIT(1)
#define dioff PORTA&=~BIT(1)
extern const unsigned char
tab[]={0x3f,0x06,0x5b,0x4f,0x66,0x6d,0x7d,0x07,0x7f,0x6f};
void dataout(uchar temp)
{
         uchar i,temp1;
         temp1=tab[temp];
         for(i=0;i<8;i++)
         {
                  scloff;
                NOP();
                if((temp1&0x80)!=0x80)       
                {
                         dioff;
                        NOP();                                       
                }       
                else
                {
                         NOP();
                         dion;
                        NOP();
                }
                        sclon;
                        NOP();
                        NOP();
                        temp<<=1;
                        NOP();
                        NOP();
                        scloff;                          
         }
}
void delay(void)
{
         uint i;
         for(i=0;i<200;i++);
}
void display(uint k)
{
         dataout(k/1000);
         PORTA&=0x03;
         delay();
         dataout(k/100%10);
         PORTA|=0x04;
         delay();
         dataout(k/10%10);
         PORTA&=0x0b;
         PORTA|=0x08;
         delay();
         dataout(k%10);
         PORTA|=0x0c;
         delay();                           
}
void main(void)
{
         DDRA=0xff;
         while(1)
         {
                          delay();
                        display(1234);                
                        delay();
         }
}

使用特权

评论回复
5
xuan_weiguan|  楼主 | 2014-7-29 14:55 | 只看该作者
ddllxxrr 发表于 2014-7-29 14:49
在输入完串行数据后打个断点,用万用表量那个时候的管脚电平,看对不对啦

嗯 好的,我看下谢谢

使用特权

评论回复
发新帖 我要提问
您需要登录后才可以回帖 登录 | 注册

本版积分规则

7

主题

13

帖子

0

粉丝