MSP430低功耗模式-while循環失效

如下代碼實現MSP430G2553單片機兩個led交替閃爍 #include <msp430.h> /** * main.c */ int main(void) { WDTCTL = WDTPW | WDTHOLD; // stop watchdog timer P1DIR|=BIT0+BIT6; P1OUT|=BIT0; while(1) { unsigned int
相關文章
相關標籤/搜索