led.h 176 B

123456789
  1. #ifndef __LED_H__
  2. #define __LED_H__
  3. #include <rtthread.h>
  4. void rt_hw_led_init(void);
  5. void rt_hw_led_on(rt_uint32_t led);
  6. void rt_hw_led_off(rt_uint32_t led);
  7. #endif