1234567891011121314151617181920212223242526272829303132 |
- /*
- * 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 <rthw.h>
- #include <rtdevice.h>
- #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__ */
|