aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2013-01-21stlink: Add the UARTUwe Bonnes
2013-01-21native/usbuart: Move platform dependant parts to platform.hUwe Bonnes
2013-01-21stlink: Update to current libopencm3 usb api.Uwe Bonnes
2013-01-21stlink: Use a seperate linker file as stlink has only 64 kByteUwe Bonnes
2013-01-21Add explanation how toi fill the libopencm3 directoryUwe Bonnes
2013-01-21More Files to ignoreUwe Bonnes
2013-01-11Fixed magic numbers for CSW access.Gareth McMullin
2013-01-10Update to current libopencm3 usb api.Gareth McMullin
2013-01-10Merge pull request #8 from aibara/masterGareth McMullin
One-liner fix for black magic firmware issue corrupting un-aligned memory reads from target.
2013-01-10Don't increment src address twice in ap_mem_read_bytes function. Fixes ↵Allen Ibara
corrupted thumb disassembly dumps in gdb.
2012-11-21Check for 10-bit address over flow when auto-incrementing.Gareth McMullin
Clean up whitespace.
2012-11-15Added support for STM32F37x.Vegard Storheil Eriksen
2012-11-03Probe function return bool, true if device identified.Gareth McMullin
Correctly identify LM3S3748.
2012-11-03Recognise LPC43xx dual core devices.Gareth McMullin
2012-11-03Move breakpoint packet handler out of main gdb loop.Gareth McMullin
Use gdb_putpacketz for constant strings.
2012-11-03Clean up whitespace.Gareth McMullin
2012-11-03Clean up ancient bad typing and malloc madness.Gareth McMullin
2012-11-03Check for null pointer before decalaring register array.Gareth McMullin
2012-11-03Allow target attachment to timeout and report failure.Gareth McMullin
This is needed for if the target device is held in reset.
2012-10-25Added support for STM32L1.Vegard Storheil Eriksen
2012-10-24Added support for STM32F0.Vegard Storheil Eriksen
2012-10-24Changed libopencm3 url to https.Gareth McMullin
2012-10-23Added support for STM32F3.Vegard Storheil Eriksen
2012-10-22Add toplevel Makefile to build blackmagic with libopencm3.Gareth McMullin
2012-10-22Build with libopencm3 as a submodule.Gareth McMullin
Fix incompatibilities with latest libopencm3.
2012-09-04Fix support for multiple devices on the same jtag chain.Gareth McMullin
Mask out architecture version in ADIv5 JTAG IDCODE.
2012-09-04Whitespace fixes.Gareth McMullin
2012-08-10Add a copy of DEMCR to Cortex-M private data to preserve over 'run'.Gareth McMullin
2012-07-27Corrected upgrade tool to use our new usb ids.Gareth McMullin
2012-07-05Correct stepping over programmed breakpoints.Gareth McMullin
Fixes issue #2.
2012-07-05cortexm: Moved all static data to the heap.Gareth McMullin
2012-07-05cortexm: Poll for S_RESET_ST in DHCSR to detect release from reset.Gareth McMullin
2012-07-05ADIv5 AP and DP are now allocated on the heap and reference counted.Gareth McMullin
They are unref'd and free'd automatically when the target list is destroyed.
2012-07-05libftdi: Fixed delay function.Gareth McMullin
2012-07-01Add delay after reset request.Gareth McMullin
Hopefully this fixes problems observed with failing vFlashWrite.
2012-06-30Signal on halt is now returned by target_halt_wait().Gareth McMullin
Fault unwinding is now handled internally in target implementation. GDB server doesn't need to know about it.
2012-06-30Allow user to specify JTAG IR lengths.Gareth McMullin
This allows the use of devices that shift out values other than 0x01 from IR.
2012-06-28Fixed build for stlink platform.Gareth McMullin
2012-06-28Clear target error on attaching.Gareth McMullin
Fixes possible lock-up on devices booting from blank flash.
2012-06-27Made cur_target, last_target static in gdb_main.c.Gareth McMullin
Added target destroy notify mechanism.
2012-06-26Added option byte programming commands for STM32F1.Gareth McMullin
2012-06-26Fixed crash on monitor commands with no attached target.Gareth McMullin
2012-06-26Added 'erase_mass' command for STM32F1 and cleaned up some magic numbers.Gareth McMullin
2012-06-25Added 'vector_catch' command to control trapped vectors on Cortex-M.Gareth McMullin
2012-06-25Made SAM3X monitor commands static.Gareth McMullin
2012-06-24Added monitor commands to set GPNVM bits on SAM3X.Gareth McMullin
2012-06-24Added mechanism for target driver to add new monitor commands.Gareth McMullin
2012-06-24Added target.c for common target routines.Gareth McMullin
2012-06-24Updated lmi, nxp and stm32f4 drivers to use adiv5_target_ap().Gareth McMullin
2012-06-23Added flash erase function for Atmel SAM3X.Gareth McMullin