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.

MSPM0G3507: Priority of interrupt functions that have not been set

Part Number: MSPM0G3507

Hi.

I have a question about interrupt priority.
What is the priority number set for an interrupt function that is not set?
For example, if the interrupt priority is set as in "nvic_interrupt_grouping.c" in the MSPM0 SDK, what is the priority number of the unset interrupt functions such as ADC0 and GPIOA?

int main(void)

{
    SYSCFG_DL_init();

    NVIC_SetPriority(TIMER_0_INST_INT_IRQN, 1);
    NVIC_SetPriority(TIMER_1_INST_INT_IRQN, 2);
    NVIC_SetPriority(WWDT0_INT_IRQN, 0);

    NVIC_EnableIRQ(TIMER_0_INST_INT_IRQN);
    NVIC_EnableIRQ(TIMER_1_INST_INT_IRQN);
    NVIC_EnableIRQ(WWDT0_INT_IRQN);

    DL_TimerG_startCounter(TIMER_0_INST);
    DL_TimerG_startCounter(TIMER_1_INST);

    while (1)
        ;
}

From the datasheet, it is listed as "Selectable" and I don't know the default value.