2010-08-20 10:41 AM
Sleep Mode - Problems Exiting with External Interrupt
2011-05-17 05:03 AM
You are pretty much guaranteed to get an interrupt crap storm if you don't clear the pending interrupt.
if (EXTI_GetITStatus(EXTI_Line1) != RESET) EXTI_ClearITPendingBit(EXTI_Line1);2011-05-17 05:03 AM
thanks for your help