I've a interrupt input that's low while there's data for me, not an uncommon mode. The only config option I can find in the micro is for rising, falling or both edges. Is there not a ''level'' mode such that on exiting the IRQ handler the core re-detects the ''level'' and repeats until the data has been dealt with? Do I have to poll the input within the IRQ handler, moving data until it's negated?
The ARM manual (http://infocenter.arm.com/help/topic/com.arm.doc.ddi0337e/DDI0337E_cortex_m3_r1p1_trm.pdf) for the NVIC mentions ''Level vs pulse'' that looks just the ticket, but there's no mention in the ST blurb. Anyone any ideas? Also, what's the difference between a port pin interrupt and event?