diff options
| author | Damien George | 2014-01-03 07:02:17 -0800 |
|---|---|---|
| committer | Damien George | 2014-01-03 07:02:17 -0800 |
| commit | c2e21bb7d992afcfc92c5b6daa62491569d762e6 (patch) | |
| tree | 77f632308664baaf7bd300cf681fd2e2cb95f6f8 /stm | |
| parent | d580e20572a0f5bd5d9f06ef7cb27af818fcf957 (diff) | |
| parent | 1a1ba4d555146fe3bf0cd32906c77f5d918423ca (diff) | |
Merge pull request #45 from iabdalkader/master
Change dfu.py to be Python 2/3 compatible
Diffstat (limited to 'stm')
| -rw-r--r-- | stm/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/stm/Makefile b/stm/Makefile index be4ca8b3a..018d31f49 100644 --- a/stm/Makefile +++ b/stm/Makefile @@ -148,7 +148,7 @@ OBJ = $(addprefix $(BUILD)/, $(SRC_C:.c=.o) $(SRC_S:.s=.o) $(PY_O) $(SRC_FATFS:. all: $(BUILD) $(BUILD)/flash.dfu $(BUILD)/flash.dfu: $(BUILD)/flash0.bin $(BUILD)/flash1.bin - python2 $(DFU) -b 0x08000000:$(BUILD)/flash0.bin -b 0x08020000:$(BUILD)/flash1.bin $@ + python $(DFU) -b 0x08000000:$(BUILD)/flash0.bin -b 0x08020000:$(BUILD)/flash1.bin $@ $(BUILD)/flash0.bin: $(BUILD)/flash.elf arm-none-eabi-objcopy -O binary -j .isr_vector $^ $@ |
