From fdaf126d31448759314b893c56375ab0c4b2300a Mon Sep 17 00:00:00 2001 From: Ivan Grokhotkov Date: Sun, 24 May 2015 22:07:33 +0300 Subject: [PATCH] Fix max upload size for modwifi and nodemcu (#314) --- hardware/esp8266com/esp8266/boards.txt | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/hardware/esp8266com/esp8266/boards.txt b/hardware/esp8266com/esp8266/boards.txt index 3aba3feec..3588d09e2 100644 --- a/hardware/esp8266com/esp8266/boards.txt +++ b/hardware/esp8266com/esp8266/boards.txt @@ -134,7 +134,8 @@ modwifi.name=Olimex MOD-WIFI-ESP8266(-DEV) modwifi.upload.tool=esptool modwifi.upload.speed=115200 modwifi.upload.resetmethod=ck -modwifi.upload.maximum_size=2097152 +modwifi.upload.maximum_size=983040 +modwifi.upload.maximum_data_size=81920 modwifi.upload.wait_for_upload_port=true modwifi.serial.disableDTR=true modwifi.serial.disableRTS=true @@ -185,7 +186,8 @@ nodemcu.name=NodeMCU (ESP8266 ESP-12 Module) nodemcu.upload.tool=esptool nodemcu.upload.speed=115200 nodemcu.upload.resetmethod=ck -nodemcu.upload.maximum_size=4194304 +nodemcu.upload.maximum_size=983040 +nodemcu.upload.maximum_data_size=81920 nodemcu.upload.wait_for_upload_port=true nodemcu.serial.disableDTR=true nodemcu.serial.disableRTS=true