FIQ中断在IAR编译器里得使用__fiq关键字,见“EWARM_CompilerReference.pdf”的149页:
“__fiq This keyword declares a fast interrupt function. All interrupt functions must be compiled in ARM mode; use either the __arm keyword or the #pragma
type_attribute=__arm directive to alter the default behavior if needed.
A function declared __fiq does not accept parameters and does not have a return value.
Example
__fiq __arm void interrupt_function(void);”