| 123456789101112131415161718192021222324252627282930313233 |
- /*
- * Copyright (C) 2022-2024, 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;
- };
- int rt_hw_pin_init(void);
- #endif
- #endif /* __DRV_GPIO_H__ */
|