mspdebug

Debug and program MSP430 microcontrollers from the command line.

brewmacoslinux
Try with needOr install directly
Source

About

Debugger for use with MSP430 MCUs

Commands

mspdebug

Examples

connect to MSP430 microcontroller via debugger$ mspdebug tilib
load and run a program on MSP430 chip$ mspdebug tilib "prog firmware.elf" "run"
read memory from microcontroller and save to file$ mspdebug tilib "md 0x1000 0x100 > memory_dump.txt"
set breakpoint and step through code on MSP430$ mspdebug tilib "break 0x2400" "step"
erase chip and program new firmware in batch mode$ mspdebug tilib "erase all" "prog new_firmware.elf" "quit"