Makefile: cause a system reset using OpenOCD

This commit is contained in:
mcudev 2017-11-10 14:02:35 -05:00
parent ba44a21a40
commit ed2f48c612
1 changed files with 3 additions and 0 deletions

View File

@ -150,6 +150,9 @@ flash_erase: ## erase all sectors in flash bank 0
openocd: ## start openocd which connects to the device
$(OPENOCD)
openocd_reset: ## cause a system reset using OpenOCD
$(OPENOCD) -c "init; reset; exit"
GDB = arm-none-eabi-gdb --nx -ex 'set remotetimeout unlimited' -ex 'set confirm off' -ex 'target remote 127.0.0.1:3333' -ex 'monitor reset halt'
gdb_boardloader: $(BOARDLOADER_BUILD_DIR)/boardloader.elf ## start remote gdb session to openocd with boardloader symbols