led.h 329 B

123456789101112131415161718
  1. /*
  2. * Copyright (c) 2006-2018, RT-Thread Development Team
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. *
  6. * Change Logs:
  7. * Date Author Notes
  8. */
  9. #ifndef __LED_H__
  10. #define __LED_H__
  11. #include <rtthread.h>
  12. void rt_hw_led_init(void);
  13. void rt_hw_led_on (rt_uint32_t led);
  14. void rt_hw_led_off(rt_uint32_t led);
  15. #endif