Other Parts Discussed in Thread: MSP430WARE
I was wondering what the best software tools and practices to use when using interrupt driven development. My program is currently set up to follow this basic path:
#include "driverlib.h"
//Global variables
#pragma PERSISTENT(hello)
int hello;
int main() {
while(1) {}
}
/*
Interrupt routines below...
*/
How would I go about putting my micro into LPM3.5, and what are the best practices for handling that mode into and out of interrupt service routines.
Thanks!