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.
Tool/software: Code Composer Studio
See the attached screenshot. CCS keeps hitting a phantom breakpoint in __mpyi_f5hw in mult16_f5hw.asm. This is making debugging impossible. I'm using CCS version 8.0.0.1, the new version of the MSP-FET using Spy-Bi-Wire and a MSP430FR2433 on our own development board.
Hi Walter,
I have an update. The phantom breakpoint is hitting before interrupts are even enabled! It's reliably hitting while I'm initializing my 'GPIO helper' driver callbacks. See the snippet below:
uint16_t i = 0; uint16_t j = 0; for(i = 0; i < GPIO_NUM_PORTS; i++) { for(j = 0; j < GPIO_NUM_PINS; j++) { pinConfig[i][j].callback = NULL; } }
Here's the callback definition:
typedef void (*gpio_helper_int_f)(gpio_port_t port, gpio_pin_t pin);
Hi Keith,
Yup. Here's the definition:
typedef struct { gpio_edge_t edge; gpio_helper_int_f callback; } gpio_pin_config_t; static gpio_pin_config_t pinConfig[GPIO_NUM_PORTS][GPIO_NUM_PINS];
Additionally, I just power cycled everything and the phantom breakpoint is no longer halting this line of code.
Hi Walter,
No breakpoints. I originally thought that the phantom breakpoint might be from a 'hidden' breakpoint so I explicitly disabled all breakpoints. The issue still presented itself.
-Rob
**Attention** This is a public forum