|
我的程序附在下面,比较长。但大致就是这个意思:
原程序中ad_buf作为全局变量在main函数与子函数间传递,但是发现在子函数中修改了ad_buf这个变量后,回到主函数中,却发现这个变量的量仍然没有变化。请问这个问题是什么原因?我是在KEIL中调试的。
源程序:
#include
#include
#include
#define uchar unsigned char
#define uint unsigned int
sbit sca_mosi=P1^0;
sbit sca_miso=P1^1;
sbit sca_sck=P1^2;
sbit sca_csb=P1^3;
void ad_update(void);
uchar cmd;
uint ad_buf;
void main(void)
{
uint anglex,angley,ang;
cmd=0x10;
ad_update();
anglex=ad_buf;
cmd=0x11;
ad_update();
angley=ad_buf;
ang=asin(((float)anglex-1024)/3277.0)*360/6.28;
}
void ad_update(void)
{
uchar cnt1=8,cnt2=11;uint ad_buf=0;
sca_csb=0;
_nop_();_nop_();_nop_();
while(cnt1>0)
{
sca_sck=0;
sca_mosi=((cmd&0x80)==0)?0:1;
cmd<<=1;
_nop_();
sca_sck=1;
_nop_();_nop_();_nop_();
cnt1--;
}
while(cnt2>2)
{
sca_sck=1;
if(sca_miso)ad_buf=ad_buf|0x0001;
ad_buf<<=1;
_nop_();
_nop_();_nop_();_nop_();
cnt2--;
}
sca_csb=1;
sca_sck=0;
}
|
|