2002-11-13 08:56 AM
ST9 EFT overflow interrupt not working in PWM mode
2011-05-17 02:32 AM
Hi,
I am using the ST92F150 EFT in PWM mode and I am not able to generate an overflow interrupt ! Have you ever had this problem ? Breizh2011-05-17 02:32 AM
Did you clear your interrupt flags just before executing the global interrupt enable ?
I ran into the same issue very recently. It looks like the EFT interrupts are triggered on edge and not on level so you must make sure that all your flags are clear prior to enable the interrupt. Since the EFT is a free running counter, the TOF gets set pretty much righ away and if not clear by software, your overflow interrupt will be masked forever... Jojo