led.h 404 B

123456789101112131415161718192021
  1. /*
  2. * Copyright (c) 2006-2021, RT-Thread Development Team
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. *
  6. * Change Logs:
  7. * Date Author Notes
  8. * 2020-10-28 luhuadong first version
  9. */
  10. #ifndef __LED_H__
  11. #define __LED_H__
  12. #define LED_ON 1
  13. #define LED_OFF 0
  14. void led_init(void);
  15. void led_set(rt_uint8_t val);
  16. void led_toggle(void);
  17. #endif /* __LED_H__ */