mspdebug fork containing various WIP patches
Go to file
Daniel Beer c7e05fd9fc Rewrite output filtering.
The old code was messy and difficult to understand. This implementation
better separates ANSI parsing from output and is easier to modify.
2012-10-09 12:01:00 +13:00
drivers Separate and clean up break handling. 2012-10-09 09:55:48 +13:00
formats coff: skip over bad symbol table entries. 2012-08-01 12:20:17 +12:00
simio Move namelist function to output_util. 2012-10-09 10:03:10 +13:00
transport Better Olimex compatibility. 2012-09-28 06:37:32 +12:00
ui gdb: allow Ctrl+C to shutdown server. 2012-10-09 11:57:14 +13:00
util Rewrite output filtering. 2012-10-09 12:01:00 +13:00
.gitignore Modifications to compile on Cygwin. 2010-05-13 16:45:38 +12:00
AUTHORS New chip identification database for Olimex debuggers. 2012-10-03 13:41:59 +13:00
COPYING MSPDebug version 0.2. 2009-11-17 15:36:04 +13:00
ChangeLog Version 0.20 2012-08-14 17:24:17 +12:00
Makefile Separate and clean up break handling. 2012-10-09 09:55:48 +13:00
README Version 0.20 2012-08-14 17:24:17 +12:00
mspdebug.man Document "power" command. 2012-10-04 12:59:52 +13:00
ti_3410.fw.ihex Implemented TI3410 firmware download. 2011-09-16 16:09:03 +12:00
ti_3410.fw.txt Implemented TI3410 firmware download. 2011-09-16 16:09:03 +12:00

README

MSPDebug
========

MSPDebug is a free debugger for use with MSP430 MCUs. It supports
FET430UIF, eZ430, RF2500 and Olimex MSP430-JTAG-TINY programmers, as
well as many other compatible devices. It can be used as a proxy for
gdb or as an independent debugger with support for programming,
disassembly and reverse engineering.

Features
--------

  * Userspace only: no kernel modifications required.
  * Works with RF2500, eZ430, FET430UIF (V2 and V3), Launchpad, Chronos,
    GoodFET, Olimex MSP430-JTAG-TINY and MSP430-JTAG-ISO programmers.
    Also supports the TI flash bootloader.
  * Can act as a GDB remote stub (replacement for msp430-gdbproxy)
    and/or a GDB client.
  * Can single-step, program, run to breakpoint and inspect memory on
    supported devices.
  * Can be used to access the FET430UIF bootloader.
  * Supports Intel HEX, ELF32, BSD symbol table, COFF, TI Text and
    SREC file formats.
  * Can disassemble code in memory, including translating addresses to
    symbols.
  * Includes reverse-engineering features such as instruction search,
    call-graph analysis and symbol table editing.
  * Simulation mode allows execution of MSP430 code without hardware.
  * Cross-platform: compiles on Linux, *BSD, OS/X and Windows.

Compiling from source
---------------------

Ensure that you have the necessary packages to compile programs that use
libusb (on Debian or Ubuntu systems, you might need to do apt-get
install libusb-dev). After that, unpack and compile the source code
with:

    tar xvfz mspdebug-version.tar.gz
    cd mspdebug-version
    make

If you don't want GNU readline support, you can invoke make with:

    make WITHOUT_READLINE=1

After compiling, install the binary and manual page by running (as
root):

    make install

Type "mspdebug --help" for usage instructions.