#include <hidef.h> //工程通用的宏文件
#include "deriva
tive.h" //
单片机硬件型号文件
/*************************************************************/
/* 延时函数 */
/*************************************************************/
void delayms(int ms)
{
int ii,jj;
if (ms<1) ms=1;
for(ii=0;ii<ms;ii++)
for(jj=0;jj<1335;jj++);
}
/*************************************************************/
/* PLL初始化 */
/*************************************************************/
void INIT_PLL(void)
{
CLKSEL_PLLSEL=0;
PLLCTL_PLLON=0;
SYNR=0x00|0x01;
REFDV=0x80 | 0x01;
POSTDIV=0x00;
PLLCTL_PLLON=1;
_asm(nop);
_asm(nop);
while(CRGFLG_LOCK==0);
CLKSEL_PLLSEL =1;
}
/*************************************************************/
/* 主函数 */
/*************************************************************/
void main(void)
{
unsigned char LedCnt=0;
INIT_PLL();
DDRB=0xff;
DDRA=0xff;
PORTA=0X00;
PORTB=0X00;
DDR1AD0=0X00;
ATD0DIEN=0XFF;
DisableInterrupts;
delayms(500);
for(;;)
{
if(PT1AD0_PT1AD07)
{
PORTB_PB0=0;
PORTA_PA0=0;
}
else
{
PORTB_PB0=1;
PORTA_PA0=1;
}
delayms(500);
}
}
一周热门 更多>