CC2530实现流水灯
#include <ioCC2530.h>//引用CC2530头文件#define D3 P1_0#define D4 P1_1#define D5 P1_3#define D6 P1_4//为了方便使用,可以在这里将端口进行宏定义void Init_Port(){ P1SEL &= ~0X1B;//设置端口为普通IO P1DIR |= 0X1B;//将端口方向设置为输出 P1 &= ~0X1B;//将端口置为低电平}void d