led.h 381 字节
Newer Older
M
Ming, Bai 已提交
1
/*
2 3
/*
 * Copyright (c) 2006-2018, RT-Thread Development Team
M
Ming, Bai 已提交
4
 *
5
 * SPDX-License-Identifier: Apache-2.0
M
Ming, Bai 已提交
6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
 *
 * Change Logs:
 * Date           Author       Notes
 * 2009-01-05     Bernard      the first version
 */

#ifndef __LED_H__
#define __LED_H__

#include <rtthread.h>

void rt_hw_led_init(void);
void rt_hw_led_on(rt_uint32_t led);
void rt_hw_led_off(rt_uint32_t led);

#endif