⑴ 用 codewarrior 寫個跑馬燈程序
那我給你個我自己寫的跑馬燈程序 我是參加飛思卡爾賽車 這個程序已經在codewarrior上可以運行 在我的S12X128的單片機上燒寫過了 可以用
調試一下 可以就給分,謝謝了。
void dly(int k)
{ int i;
for( i=0;i<k;i++);
}
void main(void) {
//unsigned char tab[8]={0xfe,0xfd,0xfb,0xf,0x7f,0x8f,0x9f,0xbf};
int i;
DDRB = 0xff;
PORTB = 0xfe;
while(1)
{PORTB = 0XFE;
for(i=0;i<8;i++)
{
// PORTB = tab[i];
dly(20000);
PORTB = PORTB*2+1;
}
}
}