智能车制作
标题:
为什么我的无论AD口还是IO口读不出数据啊!谁能帮忙看看哪有问题
[打印本页]
作者:
hude
时间:
2010-5-21 23:12
标题:
为什么我的无论AD口还是IO口读不出数据啊!谁能帮忙看看哪有问题
#include <hidef.h> /* common defines and macros */
#include <MC9S12XS128.h> /* derivative information */
#pragma LINK_INFO DERIVATIVE "mc9s12xs128"
void main(void)
{
/* put your own code here */
DDRA= 0x00; //A口输出入
DDRB= 0xFF; //B口输出
PORTB=0XFF;
EnableInterrupts;
for(;;) {
if(PORTA_PA0==0)
{
DDRB=0xFF;
PORTB=0XF0;
}
else if(PORTA_PA0==1)
{
DDRA=0xFF;
PORTB=0X0F;
}
} /* loop forever */
/* please make sure that you never leave main */
}
作者:
chenhongsong
时间:
2010-7-14 13:58
按照你这个程序PA0应该是可以读出数据的
欢迎光临 智能车制作 (http://111.231.132.190/)
Powered by Discuz! X3.2