基于MSP430跑马灯程序
#include <msp430x26x.h>void Delay(unsigned int time){ while(time--) { _NOP(); }}uns
基于MSP430跑马灯程序