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  */
9 #ifndef __LED_H__
10 #define __LED_H__
11 
12 #include <rtthread.h>
13 
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 
18 #endif
19