基于LM3S1138对跑马灯的控制设计-#ifndef _LED_H_
#define _LED_H_
// 定义LED名称
#define LED1 0x01
#define LED2 0x02
#define LED3 0x04
// 初始化指定的LED
extern void LED_Init(unsigned char ucLED);
// 点亮指定的LED
extern void LED_On(unsigned char ucLED);
// 熄灭指定的LED
extern void LED_Off(unsigned char ucLED);
// 反转指定的LED
extern void LED_Toggle(unsigned char ucLED);
#endif // _LED_H_