1234567891011121314151617181920212223242526272829303132 |
- /*
- * Copyright (c) 2006-2022, RT-Thread Development Team
- * Copyright (c) 2022, Xiaohua Semiconductor Co., Ltd.
- *
- * SPDX-License-Identifier: Apache-2.0
- *
- * Change Logs:
- * Date Author Notes
- * 2022-04-28 CDT first version
- */
- #ifndef __DRV_GPIO_H__
- #define __DRV_GPIO_H__
- #include <rtdevice.h>
- #include "drv_irq.h"
- #if defined(RT_USING_PIN)
- #define __HC_PORT(port) GPIO_PORT_##port
- #define GET_PIN(PORT, PIN) (rt_base_t)(((rt_uint16_t)__HC_PORT(PORT) * 16) + PIN)
- struct hc32_pin_irq_map
- {
- rt_uint16_t pinbit;
- func_ptr_t irq_callback;
- struct hc32_irq_config irq_config;
- };
- #endif
- #endif /* __DRV_GPIO_H__ */
|