Makefile GDB updates

This commit is contained in:
mcudev 2017-09-28 18:04:11 -04:00 committed by Pavol Rusnak
parent 08bca26841
commit e85ce3aea4
1 changed files with 10 additions and 2 deletions

View File

@ -135,8 +135,16 @@ flash_erase: ## erase all sectors in flash bank 0
openocd: ## start openocd which connects to the device
$(OPENOCD)
gdb: ## start remote gdb session which connects to the openocd
arm-none-eabi-gdb $(FIRMWARE_BUILD_DIR)/firmware.elf -ex 'target remote localhost:3333'
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
$(GDB) $<
gdb_bootloader: $(BOOTLOADER_BUILD_DIR)/bootloader.elf ## start remote gdb session to openocd with bootloader symbols
$(GDB) $<
gdb_firmware: $(FIRMWARE_BUILD_DIR)/firmware.elf ## start remote gdb session to openocd with firmware symbols
$(GDB) $<
## misc commands: