led.h 381 B

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