微波EDA网,见证研发工程师的成长!
首页 > 硬件设计 > 嵌入式设计 > XS128单片机实验:B口灯交替闪亮

XS128单片机实验:B口灯交替闪亮

时间:12-01 来源:互联网 点击:
#include /* common defines and macros */
#include "derivative.h" /* derivative-specific definitions */
#include "WQ.h"
//This is the firstprogramof mine,its used to text the board;
//LED will twinkle in very fast speed;
void DELAY(int y)
{
int i,x;
for (i=y;i>0;i--)
for(x=220;x>0;x--);
}
void main(void) {
DDRB =0XFF; //置1,作为输出口
while(1){
PORTB=0x55;
DELAY(550);
PORTB=0XAA;
DELAY(550);
}

}

Copyright © 2017-2020 微波EDA网 版权所有

网站地图

Top