[update] documentation, libsg2 dependency
[fw/stlink] / example / Makefile
index f0e18996d6220659f3a036f7a8e1f23f5dc01a48..1b310b1765e8984d1c92b8ef4a7239789934695d 100644 (file)
@@ -7,6 +7,12 @@ OBJCOPY=arm-none-eabi-objcopy
 CFLAGS=-O2 -mlittle-endian -mthumb
 CFLAGS+=-mcpu=cortex-m3 -ffreestanding -nostdlib -nostdinc
 
+# to run from SRAM
+CFLAGS+=-Wl,-Ttext,0x20000000 -Wl,-e,0x20000000
+
+# to write to flash then run
+# CFLAGS+=-Wl,-Ttext,0x08000000 -Wl,-e,0x08000000
+
 all: $(BIN_IMAGE)
 
 $(BIN_IMAGE): $(EXECUTABLE)