File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -506,25 +506,25 @@ SRC_QSTR += $(SRC_C) $(STM_SRC_C) $(EXTMOD_SRC_C) $(DRIVERS_SRC_C)
506
506
# Append any auto-generated sources that are needed by sources listed in SRC_QSTR
507
507
SRC_QSTR_AUTO_DEPS +=
508
508
509
- all : $(BUILD ) /bootloader.bin $(BUILD ) /partitions.bin $(BUILD ) /firmware .bin
509
+ all : $(BUILD ) /bootloader.bin $(BUILD ) /partitions.bin $(BUILD ) /application .bin
510
510
511
511
.PHONY : idf-version deploy
512
512
513
513
idf-version :
514
514
$(ECHO ) " IDF version: f807d16310719b0dcef07de0276934653b6e48ed"
515
515
516
- deploy : $(BUILD ) /bootloader.bin $(BUILD ) /partitions.bin $(BUILD ) /firmware .bin
516
+ deploy : $(BUILD ) /bootloader.bin $(BUILD ) /partitions.bin $(BUILD ) /application .bin
517
517
$(ECHO ) " Writing $^ to the board"
518
- $(Q )$(ESPTOOL ) --chip esp32 --port $(PORT ) --baud $(BAUD ) write_flash -z --flash_mode $(FLASH_MODE ) --flash_freq $(FLASH_FREQ ) --flash_size $(FLASH_SIZE ) 0x1000 $(BUILD ) /bootloader.bin 0x8000 $(BUILD ) /partitions.bin 0x10000 $(BUILD ) /firmware .bin
518
+ $(Q )$(ESPTOOL ) --chip esp32 --port $(PORT ) --baud $(BAUD ) write_flash -z --flash_mode $(FLASH_MODE ) --flash_freq $(FLASH_FREQ ) --flash_size $(FLASH_SIZE ) 0x1000 $(BUILD ) /bootloader.bin 0x8000 $(BUILD ) /partitions.bin 0x10000 $(BUILD ) /application .bin
519
519
520
520
$(BUILD ) /esp32_out.ld : sdkconfig.h
521
521
$(Q )$(CC ) -I. -C -P -x c -E $(ESPIDF ) /components/esp32/ld/esp32.ld -o $@
522
522
523
- $(BUILD ) /firmware .bin : $(BUILD ) /firmware .elf
523
+ $(BUILD ) /application .bin : $(BUILD ) /application .elf
524
524
$(ECHO ) " Create $@ "
525
525
$(Q )$(ESPTOOL ) --chip esp32 elf2image --flash_mode $(FLASH_MODE ) --flash_freq $(FLASH_FREQ ) --flash_size $(FLASH_SIZE ) $<
526
526
527
- $(BUILD ) /firmware .elf : $(OBJ ) $(BUILD ) /esp32_out.ld
527
+ $(BUILD ) /application .elf : $(OBJ ) $(BUILD ) /esp32_out.ld
528
528
$(ECHO ) " LINK $@ "
529
529
$(Q )$(LD ) $(LDFLAGS ) -o $@ $(LIBS )
530
530
$(Q )$(SIZE ) $@
You can’t perform that action at this time.
0 commit comments