hi all.
i just tried to run my controller in 16MHZ via internal oscilator by means of software but am getting only 1.3MHZ.. I just enclosed my code below..please check it and tell me the error...
#include <msp430f2618.h>
void main(void)
{
WDTCTL = WDTPW+WDTHOLD; // Stop watchdog timer
BCSCTL1 = CALBC1_16MHZ;
DCOCTL = CALDCO_16MHZ;
P1DIR |= 0xFF;
P1OUT =0x00;
P1SEL = 0x00;
while(1)
{
P1OUT ^= BIT3;
}
}