c84fc53783
git-svn-id: https://rt-thread.googlecode.com/svn/trunk@1364 bbd45198-f89e-11dd-88c7-29a3b14d5316
9 lines
111 B
C
Executable File
9 lines
111 B
C
Executable File
#ifndef __LED_H__
|
|
#define __LED_H__
|
|
|
|
void led_init(void);
|
|
void led_on(int num);
|
|
void led_off(int num);
|
|
|
|
#endif
|