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:
I wrote a quick-and-dirty program for my MSP430 LaunchPad to test if a sensor would detect a magnet but I'm having trouble debugging it because CCS keeps moving the breakpoint I put inside an if statement. Relevant section of code:
// Configure ports P1DIR |= BIT0; // Config P1.0 (LED1) as output P1OUT &= ~BIT0; // Clear LED1 to start P1DIR &= ~BIT5; // Config P1.5 input P1REN |= BIT5; // Enable resistor P1OUT |= BIT5; // Make pull-up resistor PM5CTL0 &= ~LOCKLPM5; while (1) { if (P1IN & BIT5 == 0) { P1OUT |= BIT0; } else P1OUT &= ~BIT0; }
I've tried several different permutations of trying to get the breakpoint to be inside the if statement, but it keeps jumping to the else statement for no apparent reason.
Hey Aaron,
Are you saying the issue is a code issue or a breakpoint issue?
Can you try putting "__no_operation();" in your if statement code and then break pointing at it?
Thanks,
JD
It's an issue with the breakpoint, not my code: I added __no_operation(); between lines 11 and 12 just now, and the breakpoint still jumped straight to the else line when I compiled.
Did you see the accepted answer in the thread you linked from about turning off compiler optimization?
> if (P1IN & BIT5 == 0) {
Due to operator precedence, this executes as "if(P1IN & 0)", i.e. it's always false, so the compiler doesn't generate any code for that clause. Try instead:
> if ((P1IN & BIT5 )== 0) {
And le facepalm. That solved it right there, and that means maybe the sensor was working after all and I just did a dumb.
ETA: Yep, the sensor (A3144 Hall effect switch) works fine, though it's still not sensitive enough to be useful in the application: the LED comes on, it just requires the object to be too close to the Hall effect sensor and in the correct orientation.
**Attention** This is a public forum