I have an MSP430F5438 Chip on a MSP-EXP430F5438 board.
Using a MSP430 USB-Debug-Interface MSP-FET430UIF
I am using CCE Version: 4.1.1.00014
I check the configuration in my device manager. I can see that the computer recognizes both the FET and the EXP board in the device manager.
I am trying to run a hello world application but I keep getting stuck on the same point.
I have downloaded a small very simple piece of code to try out my board. the code is the following:
-------------------------------------------------------------------------
#include <msp430f5438.h>
#include <stdio.h>
void main (void)
{
// Stop watch dog
WDTCTL = WDTPW + WDTHOLD; // Stop WDT
// Global data initialization
a = 0;
b = 1;
printf ("Number a=",a);
_NOP();
}
-------------------------------------------------------------------------
I set the power switch to USB. Select MSP430F5438 as target device on the .ccxml file and the .cmd file.
I click on Project > Build Active Project, and i get the "build complete" message with no errors or warnings.
When i press the debug button, I get an error message saying "Error connecting to the target: No MSP430 device was found on USB FET 1".
I seriously don't know what's wrong with this. I even got a new board, FET and silicon chip, and still got the same problem. Uninstalled and Re-installed the software (CCE v4) i change the pin configuration from JP5 to JP4, I power cycle the computer, the board, the IDE, but i keep getting the same error over and over again. I really don't know what to do and I'm running out of ideas. Any help is greatly appreciated.