We are running a survey to help us improve the experience for all of our members. If you see the survey appear, please take the time to tell us about your experience if you can.
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.