Skip to content
Snippets Groups Projects
Unverified Commit 1fbd51f6 authored by Francisco Acosta's avatar Francisco Acosta Committed by GitHub
Browse files

Merge pull request #9956 from cladmi/pr/make/edbg/fix_offset

edbg.inc.mk: handle IMAGE_OFFSET being defined with a space
parents 3721f193 8a783554
No related branches found
No related tags found
No related merge requests found
......@@ -12,7 +12,7 @@ ifneq (,$(DEBUG_ADAPTER_ID))
endif
# Set offset according to IMAGE_OFFSET if it's defined
EDBG_ARGS += $(addprefix --offset ,$(IMAGE_OFFSET))
EDBG_ARGS += $(if $(IMAGE_OFFSET),--offset $(IMAGE_OFFSET))
FFLAGS ?= $(EDBG_ARGS) -t $(EDBG_DEVICE_TYPE) -b -v -p -f $(HEXFILE)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment