2010-04-27 07:12 AM
Is it possible to use GPIO EXTI and Output pins at the same port ?
2011-05-17 06:08 AM
Hi,
yes you'd be able to configure PC6 as EXTI and PC5 as output.
Please post part of your code where you configure PC6 and PC5 GPIO.
brazov2
2011-05-17 06:08 AM
2011-05-17 06:08 AM
If you configure PC6 as pull-up with interrupt pin, you'd configure:
EXTI->CR1 = 0x20; // Port C falling edge only so forcing a transition from vdd to gnd you'd go inside PC interrupt routine. Anyway this doesn't explain why it works on PD6. brazov2