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 issue

CORTEX_M0P: AutoRun: Target not run as breakpoint could not be set: _JobHardwareBreakpoint::ARM_DEBUG_V6M_bpu_add_breakpoint: FPB : All resources are in use.[22062]

  • Hi, RU

    Breakpoint is not supported at some functions.

    Also, there is breakpoint number limitation.

    You can add "__BKPT(0);" after the line you want to add a breakpoint.

        /* Default: LED1 and LED3 ON, LED2 OFF */
        DL_GPIO_clearPins(GPIO_LEDS_PORT, GPIO_LEDS_USER_LED_2_PIN);
        //Debug will stop at here:
        __BKPT(0);
        DL_GPIO_setPins(GPIO_LEDS_PORT, GPIO_LEDS_USER_LED_1_PIN |
                                            GPIO_LEDS_USER_LED_3_PIN |
                                            GPIO_LEDS_USER_TEST_PIN);

    Regards,

    Helic