2021-08-31 14:41:35 +08:00
|
|
|
/*
|
2022-01-25 16:53:04 +08:00
|
|
|
* Copyright (c) 2006-2022, RT-Thread Development Team
|
2021-08-31 14:41:35 +08:00
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
*
|
|
|
|
* Change Logs:
|
|
|
|
* Date Author Notes
|
|
|
|
* 2021-08-10 charlown first version
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef DRV_GPIO_H__
|
|
|
|
#define DRV_GPIO_H__
|
|
|
|
|
|
|
|
int rt_hw_pin_init(void);
|
|
|
|
|
|
|
|
#endif
|