Replaced default flash rule with 4m/32m rules(#1442)

This commit is contained in:
Erik Kunze 2016-08-06 21:46:42 +02:00 committed by Marcel Stör
parent 07aa210c50
commit 276d63767d
1 changed files with 14 additions and 3 deletions

View File

@ -232,10 +232,21 @@ clobber: $(SPECIAL_CLOBBER)
$(RM) -r $(ODIR)
flash:
@echo "use one of the following targets to flash the firmware"
@echo " make flash512k - for ESP with 512kB flash size"
@echo " make flash4m - for ESP with 4MB flash size"
flash512k:
$(MAKE) -e FLASHOPTIONS="-fm qio -fs 4m -ff 40m" flashinternal
flash4m:
$(MAKE) -e FLASHOPTIONS="-fm dio -fs 32m -ff 40m" flashinternal
flashinternal:
ifndef PDIR
$(MAKE) -C ./app flash
$(MAKE) -C ./app flashinternal
else
$(ESPTOOL) --port $(ESPPORT) write_flash 0x00000 $(FIRMWAREDIR)0x00000.bin 0x10000 $(FIRMWAREDIR)0x10000.bin
$(ESPTOOL) --port $(ESPPORT) write_flash $(FLASHOPTIONS) 0x00000 $(FIRMWAREDIR)0x00000.bin 0x10000 $(FIRMWAREDIR)0x10000.bin
endif
.subdirs: