Compare commits
No commits in common. "c745f865bd8c787ddc4dd5c52f2774234e0f7ff0" and "1e35af770f8da34f1ccfcd991fabede5f832be38" have entirely different histories.
c745f865bd
...
1e35af770f
@ -80,6 +80,7 @@ default: $(target).elf
|
|||||||
%.hex: %.elf
|
%.hex: %.elf
|
||||||
$(QUIET)$(OBJCOPY) -O ihex $^ $@
|
$(QUIET)$(OBJCOPY) -O ihex $^ $@
|
||||||
|
|
||||||
|
|
||||||
#Linking
|
#Linking
|
||||||
$(target).elf: $(OBJ) $(ASOBJ)
|
$(target).elf: $(OBJ) $(ASOBJ)
|
||||||
@echo [LD] $@
|
@echo [LD] $@
|
||||||
@ -100,10 +101,7 @@ $(ASOBJ):
|
|||||||
$(QUIET)$(CC) $(CFLAGS) -MMD -MT $@ $(INCLUDEPATH) $(DEFINES) -o $@ $(@:$(OBJDIR)/%.S.o=%.S)
|
$(QUIET)$(CC) $(CFLAGS) -MMD -MT $@ $(INCLUDEPATH) $(DEFINES) -o $@ $(@:$(OBJDIR)/%.S.o=%.S)
|
||||||
|
|
||||||
|
|
||||||
.PHONY: qtproject clean mrproper objcopy disassemble program
|
.PHONY: qtproject clean mrproper objcopy disassemble
|
||||||
|
|
||||||
program: $(target).elf
|
|
||||||
./program-device.sh $<
|
|
||||||
|
|
||||||
disassemble: $(target).elf
|
disassemble: $(target).elf
|
||||||
$(QUIET)$(OBJDUMP) -D -s $< > $(target).lss
|
$(QUIET)$(OBJDUMP) -D -s $< > $(target).lss
|
||||||
|
@ -1,10 +1,5 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
if [[ -z $1 ]]; then
|
|
||||||
echo "Usage: $0 <ELF-file>"
|
|
||||||
exit -1
|
|
||||||
fi
|
|
||||||
|
|
||||||
JLinkGDBServer -if SWD -device STM32F407VE &
|
JLinkGDBServer -if SWD -device STM32F407VE &
|
||||||
sleep 2
|
sleep 2
|
||||||
|
|
||||||
@ -17,7 +12,7 @@ if [[ $gdbpid == "" ]]; then
|
|||||||
exit
|
exit
|
||||||
fi
|
fi
|
||||||
|
|
||||||
arm-none-eabi-gdb -x program-device.gdb $1
|
arm-none-eabi-gdb -x program-device.gdb reflow-controller.elf
|
||||||
sleep 2
|
sleep 2
|
||||||
|
|
||||||
kill $gdbpid
|
kill $gdbpid
|
||||||
|
Loading…
x
Reference in New Issue
Block a user