File tree Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -344,23 +344,23 @@ $(BUILD)/$(OUT_FILE).out: $(BUILD) $(OBJECTS)
344
344
345
345
# Create hex file (no sd, no mbr)
346
346
$(BUILD ) /$(OUT_FILE ) .hex : $(BUILD ) /$(OUT_FILE ) .out
347
- @echo CR $(notdir $@ )
347
+ @echo Create $(notdir $@ )
348
348
@$(OBJCOPY ) -O ihex $< $@
349
349
350
350
# Hex file with mbr (still no SD)
351
351
$(BUILD ) /$(OUT_FILE ) -nosd.hex : $(BUILD ) /$(OUT_FILE ) .hex
352
- @echo CR $(notdir $@ )
353
- @python tools/hexmerge.py --overlap=replace -o $@ $< $(MBR_HEX )
352
+ @echo Create $(notdir $@ )
353
+ @python3 tools/hexmerge.py --overlap=replace -o $@ $< $(MBR_HEX )
354
354
355
355
# Bootolader only uf2
356
356
$(BUILD ) /$(OUT_FILE ) -nosd.uf2 : $(BUILD ) /$(OUT_FILE ) -nosd.hex
357
- @echo CR $(notdir $@ )
358
- python lib/uf2/utils/uf2conv.py -f 0xd663823c -c -o $@ $^
357
+ @echo Create $(notdir $@ )
358
+ @python3 lib/uf2/utils/uf2conv.py -f 0xd663823c -c -o $@ $^
359
359
360
360
# merge bootloader and sd hex together
361
361
$(BUILD ) /$(MERGED_FILE ) .hex : $(BUILD ) /$(OUT_FILE ) .hex
362
- @echo CR $(notdir $@ )
363
- @python tools/hexmerge.py -o $@ $< $(SD_HEX )
362
+ @echo Create $(notdir $@ )
363
+ @python3 tools/hexmerge.py -o $@ $< $(SD_HEX )
364
364
365
365
# Create pkg zip file for bootloader+SD combo to use with DFU CDC
366
366
$(BUILD ) /$(MERGED_FILE ) .zip : $(BUILD ) /$(OUT_FILE ) .hex
You can’t perform that action at this time.
0 commit comments