1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- /*
- * 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
- */
- /*******************************************************************************
- * Include files
- ******************************************************************************/
- #include <rtthread.h>
- #include "drv_irq.h"
- /*******************************************************************************
- * Local type definitions ('typedef')
- ******************************************************************************/
- /*******************************************************************************
- * Local pre-processor symbols/macros ('#define')
- ******************************************************************************/
- /*******************************************************************************
- * Global variable definitions (declared in header file with 'extern')
- ******************************************************************************/
- /*******************************************************************************
- * Local function prototypes ('static')
- ******************************************************************************/
- /*******************************************************************************
- * Local variable definitions ('static')
- ******************************************************************************/
- /*******************************************************************************
- * Function implementation - global ('extern') and local ('static')
- ******************************************************************************/
- rt_err_t hc32_install_irq_handler(struct hc32_irq_config *irq_config,
- void (*irq_hdr)(void),
- rt_bool_t irq_enable)
- {
- rt_err_t result = -RT_ERROR;
- stc_irq_signin_config_t stcIrqSignConfig;
- RT_ASSERT(RT_NULL != irq_config);
- RT_ASSERT(RT_NULL != irq_hdr);
- stcIrqSignConfig.enIRQn = irq_config->irq_num;
- stcIrqSignConfig.enIntSrc = irq_config->int_src;
- stcIrqSignConfig.pfnCallback = irq_hdr;
- if (LL_OK == INTC_IrqSignIn(&stcIrqSignConfig))
- {
- NVIC_ClearPendingIRQ(stcIrqSignConfig.enIRQn);
- NVIC_SetPriority(stcIrqSignConfig.enIRQn, irq_config->irq_prio);
- if (RT_TRUE == irq_enable)
- {
- NVIC_EnableIRQ(stcIrqSignConfig.enIRQn);
- }
- else
- {
- NVIC_DisableIRQ(stcIrqSignConfig.enIRQn);
- }
- result = RT_EOK;
- }
- return result;
- }
- /*******************************************************************************
- * EOF (not truncated)
- ******************************************************************************/
|