Hi:
I created a new project from scratch in Keil for TM4C123GH6PM microcontroller (TivaC Launchpad) and i want to write some functions in C to enable and disable interrupts. How can i do it ?. Is necessary to configure startup file (.s) to use this functions ?
Hi aitorsp,
how about
asm("cpsie i");
for the interrupt enable and
asm("cpsid i");
for the interrupt disable?
Isn't it your intention?
Best regards,
Yasuhiko Koumoto.