Posted on May 23, 2007 at 06:15I solved it, my mistake was doing: EIC_ExternalITTriggerConfig(EXTIT06_IRQChannel,EXTIT_TRIGGER_Falling); EXTIT06_IRQChannel was the wrong flag to use. The correct flag to use is EXTERNAL_IT6: EIC_ExternalITTriggerConf...
Posted on May 22, 2007 at 12:31Thanks for pointing out the problem, but there don't seem to be any peripheral pending bit (XTI_PRx) availiable for external interrupt pins. If I only clear the EIC pending bit (by simple assignment), the interrupt see...
Posted on May 22, 2007 at 07:06Hi, I have enabled the external interrupt pins in STR730 by doing: GPIO_InitStructure.GPIO_Mode = GPIO_Mode_IN_TRI_TTL; GPIO_InitStructure.GPIO_Pins = GPIO_PIN_8 ; GPIO_Init (GPIO5, &GPIO_InitStructure); EIC_Extern...