This is probably a very simple problem but I am a new user of the MSP430 architecture and don't understand it very well yet.
I am using the MSP430 launchpad and CCS to develop code. I wrote this very simple while loop in main() that monitors the P1.3 switch. It turns on the P1.6 (green) LED if the switch is not pressed and turns on the P1.0 (red) LED if it is pressed. That works fine.
I need a timer so I used Grace to configure an interval timer and set up an interrupt so I can do things via the ISR every 10 mS. After I set that up and compile my simple while loop in main() doesn't work anymore.
Is Grace setting up the GPIO in such a way that my code doesn't work?
Thanks in advance for any help.