中科因仑“3+1”工程特种兵精英论坛
标题:
001、闪烁灯设计
[打印本页]
作者:
张衍波
时间:
2015-4-29 20:21
标题:
001、闪烁灯设计
/********************************************************************
汇诚科技
网址:
http://www.ourhc.cn
产品有售淘宝店:
http://shop36330473.taobao.com
*********************************************************************/
#include <iom16v.h>
/**********************************************************************
函数数据类型说明
**********************************************************************/
#define uchar unsigned char
#define uint unsigned int
/**********************************************************************
MS级延时函数程序,参数i 延时时间
**********************************************************************/
void DelayMS(uint i)
{
uint j;
for(;i!=0;i--)
{
for(j=8000;j!=0;j--);
}
}
/**********************************************************************
主函数
**********************************************************************/
void main(void)
{
DDRA=0XFF;//端口设置,PA口设置为推挽1输出
PORTA=0XFF;
while(1)//程序无条件执行
{
PORTA=0X00;
DelayMS(100);//延时时间约100MS
PORTA=0XFF;
DelayMS(100);//延时时间约100MS
}
}
/**********************************************************************
结束
**********************************************************************/
[attach]2561[/attach]
欢迎光临 中科因仑“3+1”工程特种兵精英论坛 (http://bbs.enlern.com/)
Powered by Discuz! X3.4