Part Number: MSP430FR2633
Tool/software: Code Composer Studio
I'm debugging an application that uses the Captivate Demo board (the 'phone' keypad) and is meant to talk to the design centre via UART.
I've made some good progress with the code, and for the last month have had no problem with the capacitive touch. However, a couple of days ago during degbugging, suddenly the design centre is not getting messages. I tracked down the error and it seems the program is stuck in the command:
CAPT_MANAGER_CALIBRATE_SENSOR(pApp->pSensorList[ui8SensorID]);
There is a for loop in CAPT_Manager.c (in the sample code) that contains only this single line, but the program never progresses past it. This is a ROM command, so I can only see what it is doing if I step through the assembly code (and it's long). So, I'm wondering if anyone else has had issues with this? The issue came up as I was doing some coding on the UART to change how custom received messages are handled, so I'm not sure how I interfered with this function. Any insight would be greatly appreciated!