mspdebug fork containing various WIP patches
Go to file
Triss cf8b986772 jtaglib: properly handle USB ram (cannot use quick memory access routines here) 2022-07-31 20:21:51 +02:00
drivers jtaglib: properly handle USB ram (cannot use quick memory access routines here) 2022-07-31 20:21:51 +02:00
formats elf32: don't load sections with size zero 2022-05-19 01:48:22 +02:00
simio simio/tracer: fix output format 2021-05-12 10:01:45 +12:00
transport fixed hidapi compile bug, missing vid/pid arguments 2022-02-11 08:21:27 -05:00
ui ui/cmddb: clarify 'erase' parameters 2022-07-31 19:23:24 +02:00
util expr: allow '0X' hex prefix 2022-05-19 01:48:22 +02:00
.gitignore mehfet: add driver and transport 2021-10-11 12:34:50 +02:00
AUTHORS simx: MSP430X simulator by Bruce Burns <bgb@alum.mit.edu> 2020-09-05 14:56:37 +12:00
BSDmakefile Add BSDmakefile, a wrapper to call gmake on some BSDs. 2013-07-19 11:38:21 +12:00
COPYING MSPDebug version 0.2. 2009-11-17 15:36:04 +13:00
ChangeLog Version 0.25. 2017-07-24 18:58:05 +12:00
EmbeddedMode.txt Add power sample output. 2012-10-24 09:37:46 +13:00
Makefile jtaglib: refactor 2022-07-31 19:23:24 +02:00
README [feat] Arch commands 2022-03-20 10:30:18 -03:00
chipinfo.db chipinfo db: fix entries 2022-05-19 01:48:22 +02:00
mspdebug.man mehfet: add driver and transport 2021-10-11 12:34:50 +02: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 | on Arch systems, you might need to do sudo 
pacman -S libusb-compact). After that, unpack and compile the source code 
with:

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

On Debian Ubuntu systems sudo apt-get install libreadline-dev may be 
required. On Arch systems sudo pacman -S readline may be required.
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.