中科因仑“3+1”工程特种兵精英论坛

标题: 001、STC12C5A60S2单片机之闪烁灯 [打印本页]

作者: 张衍波    时间: 2015-5-5 16:28
标题: 001、STC12C5A60S2单片机之闪烁灯
/********************************************************************
                            汇诚科技

实现功能:闪烁灯
使用芯片:STC12C5A60S2
晶振:11.0592MHZ
波特率:9600
编译环境:Keil
作者:zhangxinchun
网站:www.ourhc.cn
淘宝店:
汇诚科技 http://ourhc.taobao.com
郑兴电子直销部 http://shop68451856.taobao.com
【声明】此程序仅用于学习与参考,引用请注明版权和作者信息!     

*********************************************************************/
/********************************************************************/

#include<reg52.h>                 //库文件
#include <intrins.H>
#define uchar unsigned char//宏定义无符号字符型
#define uint unsigned int  //宏定义无符号整型

/********************************************************************
                            I/O定义
*********************************************************************/

sbit LED=P0^0;         //定义单片机P0口的第0位 (即P0.0)

/********************************************************************
                            延时100MS函数
*********************************************************************/

void Delay100ms()               
{
        uchar i, j, k;
        _nop_();
        i = 5;
        j = 144;
        k = 71;
        do
        {
                do
                {
                        while (--k);
                } while (--j);
        } while (--i);
}
/********************************************************************
                            延时1S函数
*********************************************************************/
void Delay1s(uint s)               
{
uchar m,n;
for(m=s;m>0;m--)
for(n=10;n>0;n--)
Delay100ms();
}


/********************************************************************
                            主函数
*********************************************************************/
void main()
{
        while(1)   //无限循环
        {
         LED=0;           //点亮P1.0口灯
         Delay1s(1);  //延时
         LED=1;           //熄灭P1.0口灯
         Delay1s(1);  //延时
        }
}       
       
/********************************************************************
                              结束
*********************************************************************/

[attach]2679[/attach]







欢迎光临 中科因仑“3+1”工程特种兵精英论坛 (http://bbs.enlern.com/) Powered by Discuz! X3.4