Files
mr-library/bsp/wch/driver/drv_gpio.h
MacRsh 9bf63edf73 1.优化中断功能。
2.适配自动初始化。
2023-05-15 09:49:28 +08:00

22 lines
365 B
C

/*
* Copyright (c) 2023, mr-library Development Team
*
* SPDX-License-Identifier: Apache-2.0
*
* Change Logs:
* Date Author Notes
* 2023-04-27 MacRsh first version
*/
#ifndef _DRV_GPIO_H_
#define _DRV_GPIO_H_
#include "device/pin/pin.h"
#if (MR_CONF_DEVICE_PIN == MR_CONF_ENABLE)
mr_err_t mr_hw_gpio_init(void);
#endif
#endif