Hi,
Sorry if I am not using the right terminology below, and/or if "nesting" was not the right term to use ...
Suppose I have both IRQ and FIQ enabled, and then have
IntChannelSet(SYS_INT_GPIOB2, 0); // mapped to FIQ
IntChannelSet(SYS_INT_USB0, 2); // mapped to IRQ
Suppose my USB interrupt handler is taking a long time... will my GPIO interrupt have to wait until the USB handler is finished, or will FIQ "interrupt" IRQ in StarterWare, out-of-the-box?
In other words, what is meant on the wiki by, "StarterWare doesn’t support nesting of interrupts within host interrupts" ?
Thank you!!
Jonathan