This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

MSP430FR2355: VLO

Part Number: MSP430FR2355

Tool/software:

Hello, 

I have questions about MSP430fr2355. I would like to power the processor with an internal oscillator VLO. At the same time, I would like to bring the VLO to the SMCLK signal on pin P3.4.

Could someone post example of code ? 

Thank you, Jan

  • You can try the code below

    WDTCTL = WDTPW | WDTHOLD; // Stop watchdog timer  
    CSCTL4 = SELMS__VLOCLK| SELA__VLOCLK; // Set ACLK = XT1CLK = 32768Hz

    P1DIR |= BIT0 | BIT1 | BIT2; // set ACLK SMCLK and LED pin as output
    P1SEL1 |= BIT0 | BIT1; // set ACLK and SMCLK pin as second function

    PM5CTL0 &= ~LOCKLPM5; // Disable the GPIO power-on default high-impedance mode
    // to activate previously configured port settings

**Attention** This is a public forum