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.

grace 3.0.3.66 does not initialize PORT3 for MSP430FR5847

Other Parts Discussed in Thread: MSP430FR5847, MSP430FR5969

I'm seeing what appear to be several related bugs in Grace 3.0.3.66:

1. I configured to MSP430FR5847 P3DIR and P3OUT, but grace does not initialize for P3 port configurations in PinMux_init.c.

PinMux_init.c:

void PinMux_graceInit(void)
{

    /* USER CODE START (section: PinMux_graceInit_prologue) */
    /* User initialization code */
    /* USER CODE END (section: PinMux_graceInit_prologue) */

    /* Port 1 Output Register */
    P1OUT = 0;

    /* Port 1 Direction Register */
    P1DIR = BIT4 | BIT5 | BIT6 | BIT7;

    /* Port 1 Interrupt Edge Select */
    P1IES = 0;

    /* Port 1 Interrupt Flag Register */
    P1IFG = 0;

    /* Port 2 Output Register */
    P2OUT = 0;

    /* Port 2 Direction Register */
    P2DIR = BIT0 | BIT1 | BIT2 | BIT4 | BIT5 | BIT6 | BIT7;

    /* Port 2 Interrupt Edge Select */
    P2IES = 0;

    /* Port 2 Interrupt Flag Register */
    P2IFG = 0;

    /* Port J Output Register */
    PJOUT = 0;

    /* Port J Direction Register */
    PJDIR = 0;

    /* USER CODE START (section: PinMux_graceInit_epilogue) */
    /* User code */
    /* USER CODE END (section: PinMux_graceInit_epilogue) */
}

For MSP430FR5969 is OK.

Best Regards,

Yane

**Attention** This is a public forum