From 3bc7e3b741055a0814cc8c96bd40560a3b72703f Mon Sep 17 00:00:00 2001 From: Ivan Golubic Date: Wed, 25 Sep 2019 22:08:50 +0200 Subject: [PATCH 1/4] Add IoTaaP Magnolia board (#231) --- boards/iotaap_magnolia.json | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 boards/iotaap_magnolia.json diff --git a/boards/iotaap_magnolia.json b/boards/iotaap_magnolia.json new file mode 100644 index 0000000..b78c272 --- /dev/null +++ b/boards/iotaap_magnolia.json @@ -0,0 +1,35 @@ +{ + "build": { + "core": "esp32", + "extra_flags": "-DARDUINO_ESP32_DEV", + "f_cpu": "240000000L", + "f_flash": "40000000L", + "flash_mode": "dio", + "ldscript": "esp32_out.ld", + "mcu": "esp32", + "variant": "esp32" + }, + "connectivity": [ + "wifi", + "bluetooth", + "uart", + "spi", + "i2c" + ], + "debug": { + "openocd_board": "esp-wroom-32.cfg" + }, + "frameworks": [ + "arduino" + ], + "name": "IoTaaP Magnolia", + "upload": { + "flash_size": "4MB", + "maximum_ram_size": 327680, + "maximum_size": 4194304, + "require_upload_port": true, + "speed": 921600 + }, + "url": "https://iotaap.mvt-solutions.com", + "vendor": "MVT Solutions" +} From 17b84282217e00aeec49d811f74d359537bdeb39 Mon Sep 17 00:00:00 2001 From: Valerii Koval Date: Thu, 26 Sep 2019 00:38:40 +0300 Subject: [PATCH 2/4] Update connectivity options for iotaap_magnolia board // #231 --- boards/iotaap_magnolia.json | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/boards/iotaap_magnolia.json b/boards/iotaap_magnolia.json index b78c272..41aaf81 100644 --- a/boards/iotaap_magnolia.json +++ b/boards/iotaap_magnolia.json @@ -12,9 +12,8 @@ "connectivity": [ "wifi", "bluetooth", - "uart", - "spi", - "i2c" + "ethernet", + "can" ], "debug": { "openocd_board": "esp-wroom-32.cfg" From 806bc86083ce22451865ae3563decc0f8167a5ca Mon Sep 17 00:00:00 2001 From: valeros Date: Wed, 2 Oct 2019 23:02:41 +0300 Subject: [PATCH 3/4] Update Arduino core to 1.0.4 // Resolve #234, resolve #235 --- boards/esp32cam.json | 3 +++ boards/ttgo-t1.json | 3 +++ boards/vintlabs-devkit-v1.json | 35 ++++++++++++++++++++++++++++++++++ platform.json | 2 +- 4 files changed, 42 insertions(+), 1 deletion(-) create mode 100644 boards/vintlabs-devkit-v1.json diff --git a/boards/esp32cam.json b/boards/esp32cam.json index 1e0640a..62e5a5a 100644 --- a/boards/esp32cam.json +++ b/boards/esp32cam.json @@ -16,6 +16,9 @@ "ethernet", "can" ], + "debug": { + "openocd_board": "esp-wroom-32.cfg" + }, "frameworks": [ "arduino", "espidf" diff --git a/boards/ttgo-t1.json b/boards/ttgo-t1.json index b8c6e7f..bda2af8 100644 --- a/boards/ttgo-t1.json +++ b/boards/ttgo-t1.json @@ -15,6 +15,9 @@ "ethernet", "can" ], + "debug": { + "openocd_board": "esp-wroom-32.cfg" + }, "frameworks": [ "arduino", "espidf" diff --git a/boards/vintlabs-devkit-v1.json b/boards/vintlabs-devkit-v1.json new file mode 100644 index 0000000..6a23aeb --- /dev/null +++ b/boards/vintlabs-devkit-v1.json @@ -0,0 +1,35 @@ +{ + "build": { + "core": "esp32", + "extra_flags": "-DARDUINO_ESP32_DEV", + "f_cpu": "240000000L", + "f_flash": "40000000L", + "flash_mode": "dio", + "ldscript": "esp32_out.ld", + "mcu": "esp32", + "variant": "vintlabsdevkitv1" + }, + "connectivity": [ + "wifi", + "bluetooth", + "ethernet", + "can" + ], + "debug": { + "openocd_board": "esp-wroom-32.cfg" + }, + "frameworks": [ + "arduino", + "espidf" + ], + "name": "VintLabs ESP32 Devkit", + "upload": { + "flash_size": "4MB", + "maximum_ram_size": 327680, + "maximum_size": 4194304, + "require_upload_port": true, + "speed": 460800 + }, + "url": "https://www.vintlabs.com/product/vintlabs-esp32-wroom32-iot-8x2a-pwm-driver-development-kit-4mb-flash-wifi-bluetooth/", + "vendor": "VintLabs" +} diff --git a/platform.json b/platform.json index 59053f7..89bb8ba 100644 --- a/platform.json +++ b/platform.json @@ -50,7 +50,7 @@ "framework-arduinoespressif32": { "type": "framework", "optional": true, - "version": "~2.10003.190916" + "version": "~2.10004.191002" }, "framework-espidf": { "type": "framework", From b330c10fcd79ac274e80b7c6d3aa447f200efcc7 Mon Sep 17 00:00:00 2001 From: Ivan Kravets Date: Fri, 4 Oct 2019 21:04:36 +0300 Subject: [PATCH 4/4] Bump version to 1.11.0 --- platform.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/platform.json b/platform.json index 89bb8ba..df0a4f5 100644 --- a/platform.json +++ b/platform.json @@ -12,7 +12,7 @@ "type": "git", "url": "https://github.com/platformio/platform-espressif32.git" }, - "version": "1.10.0", + "version": "1.11.0", "packageRepositories": [ "https://dl.bintray.com/platformio/dl-packages/manifest.json", "http://dl.platformio.org/packages/manifest.json",