2019-10-24 17:56:09 +08:00
|
|
|
/*
|
2021-03-17 02:26:35 +08:00
|
|
|
* Copyright (c) 2006-2021, RT-Thread Development Team
|
2019-10-24 17:56:09 +08:00
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
*
|
|
|
|
* Change Logs:
|
|
|
|
* Date Author Notes
|
|
|
|
* 2019-07-19 Magicoe The first version for LPC55S6x
|
|
|
|
*/
|
2021-03-17 02:26:35 +08:00
|
|
|
|
2019-10-24 17:56:09 +08:00
|
|
|
#ifndef __DRV_LED_H__
|
|
|
|
#define __DRV_LED_H__
|
|
|
|
|
2021-03-17 02:26:35 +08:00
|
|
|
#include <rtthread.h>
|
|
|
|
#include <rtdevice.h>
|
2019-10-24 17:56:09 +08:00
|
|
|
|
|
|
|
int rt_hw_led_init(void);
|
|
|
|
|
|
|
|
#endif
|