nobo...@web.de wrote:
i want to read out the flash but found only C-Spy 2 to do it without
> the password. Is there no possibility to do it with other tools?
- JTAG allows you to read write the entire memory as long as the
security fuse is not burnt.
- the serial BSL can only erase everything without password, passwd is
used if you want to read out memory.
pyjtag.py (or msp430-jtag depending on installation) also support
uploading of memory:
# msp430-jtag --upload=0xf000 size=0x1000
gives you a hex dump. with the --ihex it will give you an intel hex
format, thus
# msp430-jtag --upload=0xf000 size=0x1000 --ihex >backup.a43
gives you a file that can be flashed too:
# msp430-jtag -e backup.a43
chris