From 2a1ae57166aef9e1f4b6d82c4d940eb9664a54c5 Mon Sep 17 00:00:00 2001 From: Ivan Kravets Date: Fri, 27 Jan 2017 21:23:05 +0200 Subject: [PATCH 1/8] Change platform name to Stage --- platform.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/platform.json b/platform.json index e27541c..718c876 100644 --- a/platform.json +++ b/platform.json @@ -1,6 +1,6 @@ { - "name": "espressif32", - "title": "Espressif 32", + "name": "espressif32_stage", + "title": "Espressif 32 (Stage)", "description": "Espressif Systems is a privately held fabless semiconductor company. They provide wireless communications and Wi-Fi chips which are widely used in mobile devices and the Internet of Things applications.", "url": "https://espressif.com/", "homepage": "http://platformio.org/platforms/espressif32", From 4864cadfaa29638438e0d144cbb2c69a983c03fa Mon Sep 17 00:00:00 2001 From: Ivan Kravets Date: Fri, 27 Jan 2017 21:50:20 +0200 Subject: [PATCH 2/8] Bump version --- platform.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/platform.json b/platform.json index 718c876..1f14716 100644 --- a/platform.json +++ b/platform.json @@ -12,7 +12,7 @@ "type": "git", "url": "https://github.com/platformio/platform-espressif32.git" }, - "version": "0.5.0-a1", + "version": "0.6.0-a1", "packageRepositories": [ "https://dl.bintray.com/platformio/dl-packages/manifest.json", "https://sourceforge.net/projects/platformio-storage/files/packages/manifest.json/download", From 2759413f7689c8d36315ebc7df47186747eab5fb Mon Sep 17 00:00:00 2001 From: Ivan Kravets Date: Sat, 28 Jan 2017 18:30:57 +0200 Subject: [PATCH 3/8] Use official Espressif Arduino Core --- platform.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/platform.json b/platform.json index 1f14716..56a4f77 100644 --- a/platform.json +++ b/platform.json @@ -46,7 +46,7 @@ "framework-arduinoespressif32": { "type": "framework", "optional": true, - "version": "https://github.com/ivankravets/arduino-esp32.git" + "version": "https://github.com/espressif/arduino-esp32.git" }, "framework-espidf": { "type": "framework", From b72c5836ef3157b721327c10676a8f77bdfa47be Mon Sep 17 00:00:00 2001 From: Ivan Kravets Date: Sat, 28 Jan 2017 18:31:31 +0200 Subject: [PATCH 4/8] Bump version --- platform.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/platform.json b/platform.json index 56a4f77..614ee94 100644 --- a/platform.json +++ b/platform.json @@ -12,7 +12,7 @@ "type": "git", "url": "https://github.com/platformio/platform-espressif32.git" }, - "version": "0.6.0-a1", + "version": "0.6.0-a2", "packageRepositories": [ "https://dl.bintray.com/platformio/dl-packages/manifest.json", "https://sourceforge.net/projects/platformio-storage/files/packages/manifest.json/download", From cf161dcfbb0e428422e97138256980c93e0c34ee Mon Sep 17 00:00:00 2001 From: Ivan Kravets Date: Tue, 31 Jan 2017 01:59:38 +0200 Subject: [PATCH 5/8] Fix PEP to SemVer converting --- platform.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/platform.json b/platform.json index 614ee94..682a988 100644 --- a/platform.json +++ b/platform.json @@ -6,13 +6,13 @@ "homepage": "http://platformio.org/platforms/espressif32", "license": "Apache-2.0", "engines": { - "platformio": ">=3.3.0-a7" + "platformio": ">=3.3.0-a.7" }, "repository": { "type": "git", "url": "https://github.com/platformio/platform-espressif32.git" }, - "version": "0.6.0-a2", + "version": "0.6.0-alpha.3", "packageRepositories": [ "https://dl.bintray.com/platformio/dl-packages/manifest.json", "https://sourceforge.net/projects/platformio-storage/files/packages/manifest.json/download", From 8cb8a4932b7e41975e222fed1aabe84c025fb667 Mon Sep 17 00:00:00 2001 From: Ivan Kravets Date: Fri, 10 Feb 2017 18:43:10 +0200 Subject: [PATCH 6/8] =?UTF-8?q?Fix=20=E2=80=9Csize=E2=80=9D=20target?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- builder/main.py | 1 + 1 file changed, 1 insertion(+) diff --git a/builder/main.py b/builder/main.py index 68c1c85..cd173d2 100644 --- a/builder/main.py +++ b/builder/main.py @@ -98,6 +98,7 @@ env.Replace( ], UPLOADCMD='"$PYTHONEXE" "$UPLOADER" $UPLOADERFLAGS $SOURCE', + SIZEPRINTCMD='$SIZETOOL -B -d $SOURCES', PROGNAME="firmware", PROGSUFFIX=".elf" From ab34511bb4d033b5c9486e6d8005059ffabc69ad Mon Sep 17 00:00:00 2001 From: Ivan Kravets Date: Fri, 10 Feb 2017 22:04:23 +0200 Subject: [PATCH 7/8] Update to latest Arduino Core --- boards/esp32thing.json | 2 +- platform.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/boards/esp32thing.json b/boards/esp32thing.json index 32a75e6..7f88152 100644 --- a/boards/esp32thing.json +++ b/boards/esp32thing.json @@ -7,7 +7,7 @@ "flash_mode": "dio", "ldscript": "esp32_out.ld", "mcu": "esp32", - "variant": "esp32" + "variant": "esp32thing" }, "frameworks": [ "arduino", diff --git a/platform.json b/platform.json index 60c1101..39ce81a 100644 --- a/platform.json +++ b/platform.json @@ -46,7 +46,7 @@ "framework-arduinoespressif32": { "type": "framework", "optional": true, - "version": "~1.1.1" + "version": "~1.1.2" }, "framework-espidf": { "type": "framework", From 94c4c71aa71bc3263c2e05ef37bbbe865a260b9d Mon Sep 17 00:00:00 2001 From: Ivan Kravets Date: Fri, 10 Feb 2017 22:05:22 +0200 Subject: [PATCH 8/8] Bump version to 0.5.1 --- platform.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/platform.json b/platform.json index 39ce81a..0e9fe91 100644 --- a/platform.json +++ b/platform.json @@ -12,7 +12,7 @@ "type": "git", "url": "https://github.com/platformio/platform-espressif32.git" }, - "version": "0.5.0", + "version": "0.5.1", "packageRepositories": [ "https://dl.bintray.com/platformio/dl-packages/manifest.json", "https://sourceforge.net/projects/platformio-storage/files/packages/manifest.json/download",