How can I enable and disable (clear and set GIE
SR
bit) in C using the mspgcc
?
How do I enable/disable interrupts in the mspgcc using C?
16.5k Views Asked by tylerjw At
3
There are 3 best solutions below
2

You can either use the __eint() / __dint() intrinsics:
#include <intrinsics.h>
...
__eint();
/* Interrupts enabled */
__dint();
/* Interrupts disabled */
Or you can use the __bis_status_register() / __bic_status_register() intrinsics:
#include <msp430.h>
#include <intrinsics.h>
...
__bis_status_register(GIE);
/* Interrupts enabled */
__bic_status_register(GIE);
/* Interrupts disabled */
Or one of the many other compatibility definitions in intrinsics.h. Note that there are also some special versions such as __bis_status_register_on_exit() / __bic_status_register_on_exit() which will change the state of the flag on exit from an ISR.
This is an example of interrupt http://importgeek.wordpress.com/tag/msp430-launchpad/