nrf/Makefile: Improve Black Magic Probe commands.

Used batch mode to get rid of the confirmation prompt on flashing.
Used 'compare-sections' to verify flash.
Removed the unnecessary `quit` at the end.
pull/7997/head
Pooya Moradi 2020-12-04 16:01:19 +03:30 zatwierdzone przez Damien George
rodzic 19f09414a6
commit 95ccd9a005
1 zmienionych plików z 5 dodań i 4 usunięć

Wyświetl plik

@ -430,19 +430,19 @@ else ifeq ($(FLASHER), bmp)
BMP_PORT ?= /dev/ttyACM0
deploy: $(BUILD)/$(OUTPUT_FILENAME).elf
$(Q)$(GDB) \
$(Q)$(GDB) -nx --batch \
-ex 'target extended-remote $(BMP_PORT)' \
-ex 'monitor tpwr enable' \
-ex 'monitor swdp_scan' \
-ex 'attach 1' \
-ex 'set mem inaccessible-by-default off' \
-ex 'load' \
-ex 'compare-sections' \
-ex 'kill' \
-ex 'quit' \
$<
sd: $(BUILD)/$(OUTPUT_FILENAME).elf
$(Q)$(GDB) \
$(Q)$(GDB) -nx --batch \
-ex 'target extended-remote $(BMP_PORT)' \
-ex 'monitor tpwr enable' \
-ex 'monitor swdp_scan' \
@ -450,10 +450,11 @@ sd: $(BUILD)/$(OUTPUT_FILENAME).elf
-ex 'set mem inaccessible-by-default off' \
-ex 'monitor erase_mass' \
-ex 'load' \
-ex 'compare-sections' \
-ex 'file $(SOFTDEV_HEX)' \
-ex 'load' \
-ex 'compare-sections' \
-ex 'kill' \
-ex 'quit' \
$<
else ifeq ($(FLASHER), openocd)