Other Parts Discussed in Thread: MSP-EXP430FR2355
Hi
I am running sample BlinkLED_MSP-EXP430FR2355 and I see led blinking properly.
However, I run OutOfBox_MSP-EXP430FR2355, it looping in the following code.
void init_CS(void) {
// Configure two FRAM waitstate as required by the device datasheet for MCLK
// operation at 24MHz(beyond 8MHz) _before_ configuring the clock system.
FRCTL0 = FRCTLPW | NWAITS_2 ;
P2SEL1 |= BIT6 | BIT7; // P2.6~P2.7: crystal pins
do
{
CSCTL7 &= ~(XT1OFFG | DCOFFG); // Clear XT1 and DCO fault flag
SFRIFG1 &= ~OFIFG;
} while (SFRIFG1 & OFIFG);
I change the BAUD rate of 115200 per your suggestion on my device manager-> MSP Application UART1
and the issue is still there.
Please advise
Thanks