lokii
DIIDevHeads IoT Integration Server
•Created by techielew on 9/9/2024 in #firmware-and-baremetal
Need Help with NVIC Pending Register Not Reflecting Button Press on STM32L476RG
Thank you so much for your time and help
But still it didn't turn out well actually. The led won't toggle yet.
In the file I had an error that
NVIC_EableIRQ(EXTI15_10_IRQn);
Is undefined
So added these lines instead of that
#define NVIC_BASE (0xE000E100UL)
#define NVIC_ISER1 (*(volatile uint32 *) (NVIC_BASE+0x004))
NVIC_ISER1 = (1<<(EXTI15_10_IRQn-32));
Still not led toggle
17 replies