PIC12C508A-簡(jiǎn)單練習(xí)程序
/*************PIC12C508A單片機(jī)程序******************************/
/**********編譯環(huán)境:MPLAB IDE v8.40 PICC*****************/
/*****File Function : PIC12C508A芯片測(cè)試 *****/
/*****Program Author : ZhengWen(ClimberWin) *****/
/*****MCU: PIC12C508A 內(nèi)部RC *****/
/*****Compile Date : 2010/09/24 *****/
/*****Edition Info : V1.0 *****/
/*****************************************************************/
#include
#define uchar unsigned char
#define uint unsigned int
/////////////引腳定義///////////////////////
#define Input_Pin GP3 //信號(hào)輸入口
#define LED GP4 //LED指示燈
#define add0 GP0 //信號(hào)輸出口
#define add1 GP1
#define add2 GP2
//////////////////////主程序/////////////////////////
main()
{
unsigned int i;
GPIO=0B00000000;
TRIS= 0B00001000; //定義輸入輸出端口
while(1)
{
if(Input_Pin==0)
{
LED=1;add0=1;add1=1;add2=1;
for(i=0;i<20000;i++) //延時(shí)
{NOP();NOP();NOP();NOP();NOP();}
LED=0;add0=0;add1=0;add2=0;
for(i=0;i<20000;i++) //延時(shí)
{ NOP();NOP();NOP();NOP();NOP();}
}
else
{;}
}
}
評(píng)論