Hello everyone, first post here!
I'm currently porting my firmware code over to the MSP430 micro (MSP430F5438A to be exact) from Atmel's XMEGA micro. In our current code base, we use an assert() macro in our debug build to call an assembly "BREAK" instruction. I've dug around a bit and it doesn't look like the "BREAK" instruction is supported in the MSP430...
Is there something else I can use here that will pause the debugger if the assert == false? What do others here use? I'd prefer to use an assembly instruction or some sort of keyword to automatically pause the debugger and NOT have to use a breakpoint for this.