Categories
Dairy

2011-6-8

说点什么呢?
游泳、430、还钱、药家鑫、南科大拒考、摸摸女、废物终点站大火……
这些于我,又有什么关系呢?
无病呻吟。
#include “msp430x14x.h”
void Delay(unsigned int time)
{
while(time–);
}
void main( void )
{
// Stop watchdog timer to prevent time out reset
WDTCTL = WDTPW + WDTHOLD;
P1DIR &=~BIT7;
P6DIR |=BIT1;
while(1)
{
if((P1IN&BIT7)==0)
{
Delay(50);
if((P1IN&BIT7)==0)
{
while(!(P1IN&BIT7));
P6OUT ^=BIT1;
}
}
}
}

Leave a Reply