Posted on March 04, 2014 at 23:10 I'm trying to do a pin interrupt (EXTI). My code: // IRQ handler for EXTI0
void
EXTI0_IRQHandler (
void
) {
EXTI->PR = 1UL << 0;
buttonPress = 1;
} int
main (
void
) {
// some system stuff here ... ...
Posted on March 05, 2014 at 11:12Yeah, the SYSCFG clock, that did it! Thanks, Clive1! In Keil uVision, there is a file named RTE_Device.h. If you open it, you'll see a configuration wizard tab under the text editor. From there you just open ''EXTI c...
Posted on March 02, 2014 at 12:48I have an XP setup under VMware Fusion. When tried IAR, the licensing didn't work. ''Failed to request licenses. Could not get the right locking code. Failed to get the machine ID for locking criteria 0x2000. ... '' ...