Back
//******************************************************************************
// MSP430F23x0 Demo - WDT+ Failsafe Clock, DCO SMCLK
//
// Description; Allow WDT+ in watchdog to timeout. Toggle P1.0 in main
// function. LPM4 is entered, this example will demonstrate WDT+ feature
// of preventing WDT+ clock to be disabled.
// The WDT+ will not allow active WDT+ clock to be disabled by software, the
// LED continues to Flash because the WDT times out normally even though
// software has attempted to disable WDT+ clock source.
// ACLK = n/a, MCLK = SMCLK = default DCO ~1.2MHz
//
// MSP430F23x0
// -----------------
// /|\| XIN|-
// | | |
// --|RST XOUT|-
// | |
// | P1.0|-->LED
//
// A. Dannenberg
// Texas Instruments Inc.
// January 2007
// Built with CCE Version: 3.2.0 and IAR Embedded Workbench Version: 3.41A
//******************************************************************************
#include "msp430x23x0.h"
void main(void)
{
P1DIR |= 0x01; // Set P1.0 to output
P1OUT ^= 0x01; // Toggle P1.0
__bis_SR_register(LPM4_bits + GIE); // Stop all clocks
}
|