Go to file
Gareth McMullin f06bded8dd linux: Set SO_REUSEADDR on gdb server socket.
Renamed HOST environment variable to PROBE_HOST.

Thanks to Michael Smith for the patch.
2011-11-25 22:55:07 +13:00
flashstub Added Flash programming stubs. 2011-02-12 22:09:38 +13:00
hardware Added some missing values and footprints to schematic. 2011-02-09 12:02:00 +13:00
scripts Fixed python scripts for programming target to work on 64-bit machines. 2011-11-12 13:47:50 +13:00
src linux: Set SO_REUSEADDR on gdb server socket. 2011-11-25 22:55:07 +13:00
COPYING Added README and COPYING 2011-02-07 11:01:10 +13:00
HACKING Updated README, added HACKING. 2011-02-09 16:56:42 +13:00
README Updated README, added HACKING. 2011-02-09 16:56:42 +13:00

README

=======================================
The Black Magic Debug Project -- README
=======================================

The Black Magic Debug Probe is gadget providing an in-application
debug capability for ARM Cortex-M3 microcontrollers.  It interfaces
with the GDB, the GNU source level debugger over the USB bus, and
communicates with the target microcontroller over either a JTAG or
Serial Wire debug port.

Currently supported microcontrollers:

 - ST STM32 Family
 - TI/LMI Stellaris Family


Getting started
===============
The Black Magic Probe is available as a built-up product form Black
Sphere Technologies.  Contact <sales@blacksphere.co.nz> should
you wish to order one.  If you would like to work on the project see
the file HACKING for developer's info.

When connected via USB, the Black Magic probe will enumerate as a CDC-ACM
device which the OS should present as a tty device or serial port.  The
GDB remote debugging protocol is implemented over this virtual character
stream.  To connect your ARM GDB to the target device use the following
commands:

(gdb) target extended-remote /dev/ttyACM0
(gdb) mon jtag_scan
(gdb) attach 1

The command 'mon swdp_scan' may be used to use the Serial-Wire Debug Protocol
instead of JTAG to connect to the target.

Once attached, all the standard GDB commands may be used to start and control
the execution of the embedded application.


Project layout
==============
flashstub/ - Source code for flash programming stubs in target drivers.
hardware/ - Schematic and PCB layout for the Black Magic Probe
scripts/ - Python scripts useful for programming devices.
src/ - Firmware source code for the Black Magic debug probe.