Back
//******************************************************************************
// MSP430F23x0 Demo - DCOCLK Biased with External Resistor Rosc
//
// Description: Use external resistor on P2.5 as DCO current source. DCOCLK
// is used by default as the MCLK source. Mainloop drives a 10 cycle software
// loop toggling P1.2. Measure DCOCLK/10 on P1.2. Example also disables XTAL
// buffer. Use of external resistor reduces temperature sensitivity of DCOCLK.
// NOTE: With no resistor conencted, the oscillator will stop. Also, in this
// case, the ability of re-establishing JTAG connectivity may be affected.
//
// DCOCLK Frequency using DCO = 3 and RSEL = 4 values @ 3V
// R=100K -> ~2MHz (See device datasheet)
//
// MSP430F23x0
// -----------------
// /|\ /|\| XIN|-
// | | | |
// R --|RST XOUT|-
// | | |
// -------|P2.5/ROSC P1.2|-->DCOCLK/10
//
// 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)
{
WDTCTL = WDTPW + WDTHOLD; // Stop WDT
P1DIR |= 0x04; // P1.2 = output direction
BCSCTL2 |= DCOR; // Rosc
BCSCTL1 &= ~(RSEL1 + RSEL0); // RSEL = 4
__bis_SR_register(OSCOFF); // XTAL not used
while(1)
{
P1OUT |= 0x04;
P1OUT &= ~0x04;
}
}
|