Altera_Forum
Honored Contributor
14 years agoMCI Interrupt issue
I have written the MCI driver with interrupt routine in Ecos but the interrupt is not getting enable. i have used eCos API to create interrupt.
cyg_drv_interrupt_create(vector, //vector0, // priority
0,
&mci_lpc24xx_isr, //isr routine
&mci_lpc24xx_dsr, // dsr routine
&handle, // handle
&interrupt // interrupt handle
);
cyg_drv_interrupt_attach(handle);
cyg_drv_interrupt_unmask(vector);
do i have to make some changes in ecos files since, this MCI related drivers are not there in the packages provided by ecos. please let me know if there is any change or modification required in any of the ecos files etc.. Is there any settings that need to be done in kernel/ HAL related files?