Hi,
This is a code snippet that shows how to enable an ISR. You can take a look at the BSP source code and see how they are handled in the interrupt drivers.
_int_install_isr(sci_init_ptr->ERR_VECTOR, _kuart_int_err_isr, int_io_dev_ptr); | |
_bsp_int_init(sci_init_ptr->ERR_VECTOR, sci_init_ptr->ERR_PRIORITY, 0, TRUE); |
I hope this helps,
Alejandro
Hi,
This is a code snippet that shows how to enable an ISR. You can take a look at the BSP source code and see how they are handled in the interrupt drivers.
_int_install_isr(sci_init_ptr->ERR_VECTOR, _kuart_int_err_isr, int_io_dev_ptr); | |
_bsp_int_init(sci_init_ptr->ERR_VECTOR, sci_init_ptr->ERR_PRIORITY, 0, TRUE); |
I hope this helps,
Alejandro