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.

VERIFICATION FAILED WHEN PROGRAM BSL IN MSP430

Other Parts Discussed in Thread: MSP430F249

HELLO TI,

I PROGRAM A CODE TO MSP430F249 VIA BSL. I HAD AN ERROR AS PICTURE

 I

I SHOW YOU MY CODE

///////////////////////////*

#include <msp430x24x.h>

int main(void)
{
  WDTCTL = WDTPW + WDTHOLD;                 // Stop Watchdog Timer
 
  DCOCTL = 0;                               // Select lowest DCOx and MODx settings
  BCSCTL1 = CALBC1_8MHZ;                    // Set DCO to 8MHz
  DCOCTL = CALDCO_8MHZ;
 
  P1DIR |= 0x01;
  P1OUT |= 0X01;

  while(1)
  {
  }  
}
/////////////*

  • BSLDEMO.EXE is a "DOS COMMAND MODE" program. What "Command Tail" did you use?

    Also, what are contents of the files you mentioned in the Command Tail?

    Particularly, the msp430.txt file that you intend to download. It seems that you try to download something into memory at 200 (which is RAM, not Flash). Does that file starts with the line: "@0200" and ends with the line: "q"? If that is the case, it is bound to fail.

**Attention** This is a public forum