/* * Copyright (c) 2006-2022, RT-Thread Development Team * * SPDX-License-Identifier: Apache-2.0 * * Change Logs: * Date Author Notes * 2022-07-1 Rbb666 first version */ #ifndef __DRV_GPIO_H__ #define __DRV_GPIO_H__ #include #include #include "drv_common.h" #include "cyhal_irq_psoc.h" #define GPIO_INTERRUPT_PRIORITY (7u) #define GET_PIN(PORTx,PIN) ((((uint8_t)(PORTx)) << 3U) + ((uint8_t)(PIN))) struct pin_irq_map { rt_uint16_t port; IRQn_Type irqno; }; int rt_hw_pin_init(void); #endif /* __DRV_GPIO_H__ */