| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- /*
- * 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_IRQ_H__
- #define __DRV_IRQ_H__
- /*******************************************************************************
- * Include files
- ******************************************************************************/
- #include <rtdef.h>
- #include "hc32_ll.h"
- /* C binding of definitions if building with C++ compiler */
- #ifdef __cplusplus
- extern "C"
- {
- #endif
- /*******************************************************************************
- * Global type definitions ('typedef')
- ******************************************************************************/
- struct hc32_irq_config
- {
- IRQn_Type irq_num;
- uint32_t irq_prio;
- en_int_src_t int_src;
- };
- /*******************************************************************************
- * Global pre-processor symbols/macros ('#define')
- ******************************************************************************/
- /*******************************************************************************
- * Global variable definitions ('extern')
- ******************************************************************************/
- /*******************************************************************************
- * Global function prototypes (definition in C source)
- ******************************************************************************/
- rt_err_t hc32_install_irq_handler(struct hc32_irq_config *irq_config,
- void (*irq_hdr)(void),
- rt_bool_t irq_enable);
- #if defined (HC32F448) || defined (HC32F472)
- rt_err_t hc32_install_independ_irq_handler(struct hc32_irq_config *irq_config,
- rt_bool_t irq_enable);
- #endif
- #ifdef __cplusplus
- }
- #endif
- #endif /* __DRV_IRQ_H__ */
- /*******************************************************************************
- * EOF (not truncated)
- ******************************************************************************/
|