aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2015-04-11lpc: split out common code and rewrite to use new interface.Gareth McMullin
2015-04-11lpc: Reduce differences between lpc11xx and lpc43xx code.Gareth McMullin
2015-04-11samd: use new flash interface.Gareth McMullin
2015-04-11nrf51: use new flash interface.Gareth McMullin
2015-04-11kinetis: use new flash interface.Gareth McMullin
2015-04-11lmi: use new flash interface.Gareth McMullin
2015-04-11stm32f1: use new flash interface.Gareth McMullin
2015-04-11stm32f4: Add second bank for F42x/F43x.Gareth McMullin
2015-04-11stm32f4: use new flash interface.Gareth McMullin
2015-04-11sam3x: Update to use new buffered flash interface.Gareth McMullin
2015-04-11sam3x: simplify probe function.Gareth McMullin
2015-04-11stm32l0: Update to use new buffered flash writes. Remove old stubs.Gareth McMullin
2015-04-11Add buffering support for flash drivers.Gareth McMullin
Some devices can get a significant boost in performance by writing to flash memories one page at a time. Generic function to do this are provided at the target layer and may be used by flash drivers.
2015-04-03Fix flash buffer alignment in target layer.Gareth McMullin
2015-04-03Add new functions to wrap flash driver erase/write/done operations.Gareth McMullin
2015-04-03Add function to add simple flash driver to target.Gareth McMullin
Clean up ram/flash/memory map on target destruction.
2015-04-03Add functions for dynamically generating the XML memory map.Gareth McMullin
2015-04-03Merge branch 'v1.6-branch'Gareth McMullin
Conflicts: src/Makefile src/platforms/stlink/platform.h src/platforms/swlink/platform.h
2015-04-03Use git describe for version in generated header file.Gareth McMullin
2015-04-02Suppress warning about longjmp clobbering local variable.Gareth McMullin
2015-04-01Merge pull request #86 from florolf/atsam3uGareth McMullin
sam3x: add SAM3U support
2015-04-01sam3x: add SAM3U supportFlorian Larysch
2015-03-29gdb: don't access target fields directly.Gareth McMullin
2015-03-29Improve cortexm_read/write_regs. Use more sensible return types.Gareth McMullin
2015-03-29Make cortexm_pc_write static.Gareth McMullin
2015-03-29stm32l0: use cortexm_run_stub.Gareth McMullin
2015-03-29nrf51: use cortexm_run_stub.Gareth McMullin
2015-03-29nrf51: Use generated stub.Gareth McMullin
2015-03-29lmi: Use generated stub with cortexm_run_stub.Gareth McMullin
2015-03-29lmi: Clean up magic numbers, remove adiv5 links, and doc ref.Gareth McMullin
2015-03-29cortexm: Separate stub loading from running.Gareth McMullin
2015-03-28Consistently use 'target *t' for target var.Gareth McMullin
2015-03-28target: Remove pc_read/pc_write methods.Gareth McMullin
2015-03-26Add a flash_done target method.Gareth McMullin
2015-03-26Remove old STM32L1 driver.Gareth McMullin
2015-03-26Remove unfinished ARM7TDMI driver.Gareth McMullin
2015-03-26Consistently name target var 't' in cortexm.Gareth McMullin
2015-03-26Send error reply and abandon target list on unhandled timeout.Gareth McMullin
2015-03-22Merge pull request #85 from gsmcmullin/exceptionsGareth McMullin
Cleaner exception handling.
2015-03-22Remove old platform specific error handling macros.Gareth McMullin
2015-03-22Clean up handling of lost targets using new exceptions mechanism.Gareth McMullin
2015-03-22Build with -Os for swlink.Gareth McMullin
2015-03-22Fix errors when building for non-native platforms.Gareth McMullin
2015-03-22Use controlled timeout on SW/JTAG DP transactions.Gareth McMullin
2015-03-22Handle timeout exceptions during scans and report to the user.Gareth McMullin
2015-03-22Raise timeout exception when target is in WFI.Gareth McMullin
Ignore the exception when polling for halt, and report the exception to the user if halting the target fails. Remove old allow_timeout flag in DP struct that's no longer needed.
2015-03-22Add exception handling mechanism and raise exception on low-level comms failure.Gareth McMullin
2015-03-22Move MIN macro to general.hGareth McMullin
2015-03-22Merge pull request #82 from gsmcmullin/flashstubsGareth McMullin
Generalise flash stub calls
2015-03-19Use for loop in STM32F1 stub and compile with -Os.Gareth McMullin