Files
2021-02-20 16:01:25 -05:00

13 lines
204 B
C

#include <msp430.h> // The correct header file will be chosen automatically based on project settings
/**
* main.c
*/
int main(void)
{
WDTCTL = WDTPW | WDTHOLD; // stop watchdog timer
return 0;
}