Part Number: CC430F5137
Other Parts Discussed in Thread: MSPDS
I'm trying to unlock the soft key in my CC430F5137. My setup consists of a MSP-FETFlash Emulation tool attached to the target through the 4-wire Jtag connection.
With the uC soft locked, I execute the sequence for VisualStudio:
status = MSP430_Initialize("TIUSB", out long version);
status = MSP430_VCC(vcc);
status = MSP430_OpenDevice("56", "FFFFFFFFCD849814FFFF44876E845C74DE2259FFF48B4629FFFFFFFFFFFFF0080", 32, 0, 56);
status = MSP430_ReadOutFile(0x8000, 0x100, "C:\\tmp.hex", FILETYPE_TI_TXT);
Where the string " FFFFFFFFCD849814FFFF44876E845C74DE2259FFF48B4629FFFFFFFFFFFFF0080" Is my password.
All calls return 0 as expected but the readout file content is all zeroes whereas it should be my application code.
Does OpenDevice not work when using password, or is it my implementation that is wrong?
Thanks.