We are trying to enter BSL mode using following code in MSP application
#include <msp430.h>
int main(void)
{
volatile unsigned int i;
WDTCTL = WDTPW|WDTHOLD;
_disable_interrupts();
((void (*)())0x1000)();
}
Then we open MSP430 Application UART port in realterm (RealTerm: Serial/TCP Terminal download | SourceForge.net )with following settings
Baud 9600 even parity,8 data bits,1 stop bit, HW flow control none
We had send BSL version check command as listed in user's guide MSP430 Flash Devices Bootloader (BSL)
3.7.4 Example Sequences for UART BSL
Get BSL version
Host: 80 01 00 19 E8 62
BSL: 00 80 05 00 3A 00 01 01 01 6C 4F
Result got from BSL is not the expected one which is 0x05 0x92 0x00 0x00 0x04 0x80 0xFE 0xED . What could be the cause of this?