Compare commits

...

8 commits

Author SHA1 Message Date
Me No Dev
b12bfa3361
Merge branch 'master' into release/v3.0.x 2024-10-18 20:30:48 +03:00
me-no-dev
2a1bd4ca36 fix(core): Update core version to 3.0.6 2024-10-17 18:30:14 +03:00
Me No Dev
f450243b27
Merge branch 'master' into release/v3.0.x 2024-10-17 14:32:07 +03:00
Mahesh Tupe
3e5c6ee6a7
fix(esp-rainmaker): update esp-rainmaker version to 1.5.0 (#10476) 2024-10-17 10:45:06 +03:00
Me No Dev
19cbe8bb49
IDF release/v5.1 (#10454)
* fix(usb): Use new tusb_init method

* IDF release/v5.1 6dff5b8f

* IDF release/v5.1 632e0c2a

* Update esp-insights version (#10456)

* Update TinyUSB init method

* Update IDF libs size and checksum

Comes also with updated TinyUSB

---------

Co-authored-by: Mahesh Tupe <tupemahesh91@gmail.com>
2024-10-15 22:15:47 +03:00
Mahesh Tupe
32d451d75b Update esp-insights version (#10456) 2024-10-15 18:06:52 +03:00
Me No Dev
d35d4447a7
IDF release/v5.1 (#10446)
* fix(usb): Use new tusb_init method

* IDF release/v5.1 6dff5b8f
2024-10-10 18:36:29 +03:00
Me No Dev
0a554933d0
IDF release/v5.1 59274ae0 (#10410) 2024-10-03 01:44:04 +03:00
46 changed files with 83 additions and 79 deletions

View file

@ -165,7 +165,11 @@ void deinit_usb_hal() {
esp_err_t tinyusb_driver_install(const tinyusb_config_t *config) { esp_err_t tinyusb_driver_install(const tinyusb_config_t *config) {
init_usb_hal(config->external_phy); init_usb_hal(config->external_phy);
if (!tusb_init()) { tusb_rhport_init_t tinit;
memset(&tinit, 0, sizeof(tusb_rhport_init_t));
tinit.role = TUSB_ROLE_DEVICE;
tinit.speed = TUSB_SPEED_FULL;
if (!tusb_init(0, &tinit)) {
log_e("Can't initialize the TinyUSB stack."); log_e("Can't initialize the TinyUSB stack.");
return ESP_FAIL; return ESP_FAIL;
} }

View file

@ -23,7 +23,7 @@ extern "C" {
/** Minor version number (x.X.x) */ /** Minor version number (x.X.x) */
#define ESP_ARDUINO_VERSION_MINOR 0 #define ESP_ARDUINO_VERSION_MINOR 0
/** Patch version number (x.x.X) */ /** Patch version number (x.x.X) */
#define ESP_ARDUINO_VERSION_PATCH 5 #define ESP_ARDUINO_VERSION_PATCH 6
/** /**
* Macro to convert ARDUINO version number into an integer * Macro to convert ARDUINO version number into an integer

View file

@ -64,7 +64,7 @@ dependencies:
rules: rules:
- if: "target != esp32c2" - if: "target != esp32c2"
espressif/esp_rainmaker: espressif/esp_rainmaker:
version: "^1.0.0" version: "^1.5.0"
rules: rules:
- if: "target != esp32c2" - if: "target != esp32c2"
espressif/rmaker_common: espressif/rmaker_common:

View file

@ -1,5 +1,5 @@
name=ArduinoOTA name=ArduinoOTA
version=3.0.5 version=3.0.6
author=Ivan Grokhotkov and Hristo Gochkov author=Ivan Grokhotkov and Hristo Gochkov
maintainer=Hristo Gochkov <hristo@espressif.com> maintainer=Hristo Gochkov <hristo@espressif.com>
sentence=Enables Over The Air upgrades, via wifi and espota.py UDP request/TCP download. sentence=Enables Over The Air upgrades, via wifi and espota.py UDP request/TCP download.

View file

@ -1,5 +1,5 @@
name=ESP32 Async UDP name=ESP32 Async UDP
version=3.0.5 version=3.0.6
author=Me-No-Dev author=Me-No-Dev
maintainer=Me-No-Dev maintainer=Me-No-Dev
sentence=Async UDP Library for ESP32 sentence=Async UDP Library for ESP32

View file

@ -1,5 +1,5 @@
name=BLE name=BLE
version=3.0.5 version=3.0.6
author=Neil Kolban <kolban1@kolban.com> author=Neil Kolban <kolban1@kolban.com>
maintainer=Dariusz Krempa <esp32@esp32.eu.org> maintainer=Dariusz Krempa <esp32@esp32.eu.org>
sentence=BLE functions for ESP32 sentence=BLE functions for ESP32

View file

@ -1,5 +1,5 @@
name=BluetoothSerial name=BluetoothSerial
version=3.0.5 version=3.0.6
author=Evandro Copercini author=Evandro Copercini
maintainer=Evandro Copercini maintainer=Evandro Copercini
sentence=Simple UART to Classical Bluetooth bridge for ESP32 sentence=Simple UART to Classical Bluetooth bridge for ESP32

View file

@ -1,5 +1,5 @@
name=DNSServer name=DNSServer
version=3.0.5 version=3.0.6
author=Kristijan Novoselić author=Kristijan Novoselić
maintainer=Kristijan Novoselić, <kristijan.novoselic@gmail.com> maintainer=Kristijan Novoselić, <kristijan.novoselic@gmail.com>
sentence=A simple DNS server for ESP32. sentence=A simple DNS server for ESP32.

View file

@ -1,5 +1,5 @@
name=EEPROM name=EEPROM
version=3.0.5 version=3.0.6
author=Ivan Grokhotkov author=Ivan Grokhotkov
maintainer=Paolo Becchi <pbecchi@aerobusiness.it> maintainer=Paolo Becchi <pbecchi@aerobusiness.it>
sentence=Enables reading and writing data a sequential, addressable FLASH storage sentence=Enables reading and writing data a sequential, addressable FLASH storage

View file

@ -1,5 +1,5 @@
name=ESP32 name=ESP32
version=3.0.5 version=3.0.6
author=Hristo Gochkov, Ivan Grokhtkov author=Hristo Gochkov, Ivan Grokhtkov
maintainer=Hristo Gochkov <hristo@espressif.com> maintainer=Hristo Gochkov <hristo@espressif.com>
sentence=ESP32 sketches examples sentence=ESP32 sketches examples

View file

@ -1,5 +1,5 @@
name=ESP_I2S name=ESP_I2S
version=3.0.5 version=3.0.6
author=me-no-dev author=me-no-dev
maintainer=me-no-dev maintainer=me-no-dev
sentence=Library for ESP I2S communication sentence=Library for ESP I2S communication

View file

@ -1,5 +1,5 @@
name=ESP_NOW name=ESP_NOW
version=3.0.5 version=3.0.6
author=me-no-dev author=me-no-dev
maintainer=P-R-O-C-H-Y maintainer=P-R-O-C-H-Y
sentence=Library for ESP_NOW sentence=Library for ESP_NOW

View file

@ -1,5 +1,5 @@
name=ESP_SR name=ESP_SR
version=3.0.5 version=3.0.6
author=me-no-dev author=me-no-dev
maintainer=me-no-dev maintainer=me-no-dev
sentence=Library for ESP Sound Recognition sentence=Library for ESP Sound Recognition

View file

@ -1,5 +1,5 @@
name=ESPmDNS name=ESPmDNS
version=3.0.5 version=3.0.6
author=Hristo Gochkov, Ivan Grokhtkov author=Hristo Gochkov, Ivan Grokhtkov
maintainer=Hristo Gochkov <hristo@espressif.com> maintainer=Hristo Gochkov <hristo@espressif.com>
sentence=ESP32 mDNS Library sentence=ESP32 mDNS Library

View file

@ -1,5 +1,5 @@
name=Ethernet name=Ethernet
version=3.0.5 version=3.0.6
author=Hristo Gochkov author=Hristo Gochkov
maintainer=Hristo Gochkov <hristo@espressif.com> maintainer=Hristo Gochkov <hristo@espressif.com>
sentence=Enables network connection (local and Internet) using the ESP32 Ethernet. sentence=Enables network connection (local and Internet) using the ESP32 Ethernet.

View file

@ -1,5 +1,5 @@
name=FFat name=FFat
version=3.0.5 version=3.0.6
author=Hristo Gochkov, Ivan Grokhtkov, Larry Bernstone author=Hristo Gochkov, Ivan Grokhtkov, Larry Bernstone
maintainer=Hristo Gochkov <hristo@espressif.com> maintainer=Hristo Gochkov <hristo@espressif.com>
sentence=ESP32 FAT on Flash File System sentence=ESP32 FAT on Flash File System

View file

@ -1,5 +1,5 @@
name=FS name=FS
version=3.0.5 version=3.0.6
author=Hristo Gochkov, Ivan Grokhtkov author=Hristo Gochkov, Ivan Grokhtkov
maintainer=Hristo Gochkov <hristo@espressif.com> maintainer=Hristo Gochkov <hristo@espressif.com>
sentence=ESP32 File System sentence=ESP32 File System

View file

@ -1,5 +1,5 @@
name=HTTPClient name=HTTPClient
version=3.0.5 version=3.0.6
author=Markus Sattler author=Markus Sattler
maintainer=Markus Sattler maintainer=Markus Sattler
sentence=HTTP Client for ESP32 sentence=HTTP Client for ESP32

View file

@ -1,5 +1,5 @@
name=HTTPUpdate name=HTTPUpdate
version=3.0.5 version=3.0.6
author=Markus Sattler author=Markus Sattler
maintainer=Markus Sattler maintainer=Markus Sattler
sentence=Http Update for ESP32 sentence=Http Update for ESP32

View file

@ -1,5 +1,5 @@
name=HTTPUpdateServer name=HTTPUpdateServer
version=3.0.5 version=3.0.6
author=Hristo Kapanakov author=Hristo Kapanakov
maintainer= maintainer=
sentence=Simple HTTP Update server based on the WebServer sentence=Simple HTTP Update server based on the WebServer

View file

@ -1,5 +1,5 @@
name=ESP Insights name=ESP Insights
version=3.0.5 version=3.0.6
author=Sanket Wadekar <sanket.wadekar@espressif.com> author=Sanket Wadekar <sanket.wadekar@espressif.com>
maintainer=Sanket Wadekar <sanket.wadekar@espressif.com> maintainer=Sanket Wadekar <sanket.wadekar@espressif.com>
sentence=ESP Insights sentence=ESP Insights

View file

@ -1,5 +1,5 @@
name=LittleFS name=LittleFS
version=3.0.5 version=3.0.6
author= author=
maintainer= maintainer=
sentence=LittleFS for esp32 sentence=LittleFS for esp32

View file

@ -1,5 +1,5 @@
name=NetBIOS name=NetBIOS
version=3.0.5 version=3.0.6
author=Pablo@xpablo.cz author=Pablo@xpablo.cz
maintainer=Hristo Gochkov<hristo@espressif.com> maintainer=Hristo Gochkov<hristo@espressif.com>
sentence=Enables NBNS (NetBIOS) name resolution. sentence=Enables NBNS (NetBIOS) name resolution.

View file

@ -1,5 +1,5 @@
name=Networking name=Networking
version=3.0.5 version=3.0.6
author=Hristo Gochkov author=Hristo Gochkov
maintainer=Hristo Gochkov <hristo@espressif.com> maintainer=Hristo Gochkov <hristo@espressif.com>
sentence=General network management library. sentence=General network management library.

View file

@ -1,5 +1,5 @@
name=NetworkClientSecure name=NetworkClientSecure
version=3.0.5 version=3.0.6
author=Evandro Luis Copercini author=Evandro Luis Copercini
maintainer=Github Community maintainer=Github Community
sentence=Enables secure network connection (local and Internet) using the ESP32 built-in WiFi. sentence=Enables secure network connection (local and Internet) using the ESP32 built-in WiFi.

View file

@ -1,5 +1,5 @@
name=OpenThread name=OpenThread
version=3.0.5 version=3.0.6
author=Rodrigo Garcia | GitHub @SuGlider author=Rodrigo Garcia | GitHub @SuGlider
maintainer=Rodrigo Garcia <Rodrigo.Garcia@espressif.com> maintainer=Rodrigo Garcia <Rodrigo.Garcia@espressif.com>
sentence=Library for OpenThread Network on ESP32. sentence=Library for OpenThread Network on ESP32.

View file

@ -1,5 +1,5 @@
name=PPP name=PPP
version=3.0.5 version=3.0.6
author=Hristo Gochkov author=Hristo Gochkov
maintainer=Hristo Gochkov <hristo@espressif.com> maintainer=Hristo Gochkov <hristo@espressif.com>
sentence=Enables network connection using GSM Modem. sentence=Enables network connection using GSM Modem.

View file

@ -1,5 +1,5 @@
name=Preferences name=Preferences
version=3.0.5 version=3.0.6
author=Hristo Gochkov author=Hristo Gochkov
maintainer=Hristo Gochkov <hristo@espressif.com> maintainer=Hristo Gochkov <hristo@espressif.com>
sentence=Provides friendly access to ESP32's Non-Volatile Storage sentence=Provides friendly access to ESP32's Non-Volatile Storage

View file

@ -1,5 +1,5 @@
name=ESP RainMaker name=ESP RainMaker
version=3.0.5 version=3.0.6
author=Sweety Mhaiske <switi.mhaiske@espressif.com> author=Sweety Mhaiske <switi.mhaiske@espressif.com>
maintainer=Hristo Gochkov <hristo@espressif.com> maintainer=Hristo Gochkov <hristo@espressif.com>
sentence=ESP RainMaker Support sentence=ESP RainMaker Support

View file

@ -1,5 +1,5 @@
name=SD name=SD
version=3.0.5 version=3.0.6
author=Arduino, SparkFun author=Arduino, SparkFun
maintainer=Arduino <info@arduino.cc> maintainer=Arduino <info@arduino.cc>
sentence=Enables reading and writing on SD cards. For all Arduino boards. sentence=Enables reading and writing on SD cards. For all Arduino boards.

View file

@ -1,5 +1,5 @@
name=SD_MMC name=SD_MMC
version=3.0.5 version=3.0.6
author=Hristo Gochkov, Ivan Grokhtkov author=Hristo Gochkov, Ivan Grokhtkov
maintainer=Hristo Gochkov <hristo@espressif.com> maintainer=Hristo Gochkov <hristo@espressif.com>
sentence=ESP32 SDMMC File System sentence=ESP32 SDMMC File System

View file

@ -1,5 +1,5 @@
name=SPI name=SPI
version=3.0.5 version=3.0.6
author=Hristo Gochkov author=Hristo Gochkov
maintainer=Hristo Gochkov <hristo@espressif.com> maintainer=Hristo Gochkov <hristo@espressif.com>
sentence=Enables the communication with devices that use the Serial Peripheral Interface (SPI) Bus. For all Arduino boards, BUT Arduino DUE. sentence=Enables the communication with devices that use the Serial Peripheral Interface (SPI) Bus. For all Arduino boards, BUT Arduino DUE.

View file

@ -1,5 +1,5 @@
name=SPIFFS name=SPIFFS
version=3.0.5 version=3.0.6
author=Hristo Gochkov, Ivan Grokhtkov author=Hristo Gochkov, Ivan Grokhtkov
maintainer=Hristo Gochkov <hristo@espressif.com> maintainer=Hristo Gochkov <hristo@espressif.com>
sentence=ESP32 SPIFFS File System sentence=ESP32 SPIFFS File System

View file

@ -1,5 +1,5 @@
name=SimpleBLE name=SimpleBLE
version=3.0.5 version=3.0.6
author=Hristo Gochkov author=Hristo Gochkov
maintainer=Hristo Gochkov <hristo@espressif.com> maintainer=Hristo Gochkov <hristo@espressif.com>
sentence=Provides really simple BLE advertizer with just on and off sentence=Provides really simple BLE advertizer with just on and off

View file

@ -1,5 +1,5 @@
name=TFLite Micro name=TFLite Micro
version=3.0.5 version=3.0.6
author=Sanket Wadekar author=Sanket Wadekar
maintainer=Sanket Wadekar maintainer=Sanket Wadekar
sentence=TensorFlow Lite for Microcontrollers sentence=TensorFlow Lite for Microcontrollers

View file

@ -1,5 +1,5 @@
name=Ticker name=Ticker
version=3.0.5 version=3.0.6
author=Bert Melis author=Bert Melis
maintainer=Hristo Gochkov <hristo@espressif.com> maintainer=Hristo Gochkov <hristo@espressif.com>
sentence=Allows to call functions with a given interval. sentence=Allows to call functions with a given interval.

View file

@ -1,5 +1,5 @@
name=USB name=USB
version=3.0.5 version=3.0.6
author=Hristo Gochkov author=Hristo Gochkov
maintainer=Hristo Gochkov <hristo@espressif.com> maintainer=Hristo Gochkov <hristo@espressif.com>
sentence=ESP32S2 USB Library sentence=ESP32S2 USB Library

View file

@ -1,5 +1,5 @@
name=Update name=Update
version=3.0.5 version=3.0.6
author=Hristo Gochkov author=Hristo Gochkov
maintainer=Hristo Gochkov <hristo@espressif.com> maintainer=Hristo Gochkov <hristo@espressif.com>
sentence=ESP32 Sketch Update Library sentence=ESP32 Sketch Update Library

View file

@ -1,5 +1,5 @@
name=WebServer name=WebServer
version=3.0.5 version=3.0.6
author=Ivan Grokhotkov author=Ivan Grokhotkov
maintainer=Ivan Grokhtkov <ivan@esp8266.com> maintainer=Ivan Grokhtkov <ivan@esp8266.com>
sentence=Simple web server library sentence=Simple web server library

View file

@ -1,5 +1,5 @@
name=WiFi name=WiFi
version=3.0.5 version=3.0.6
author=Hristo Gochkov author=Hristo Gochkov
maintainer=Hristo Gochkov <hristo@espressif.com> maintainer=Hristo Gochkov <hristo@espressif.com>
sentence=Enables network connection (local and Internet) using the ESP32 built-in WiFi. sentence=Enables network connection (local and Internet) using the ESP32 built-in WiFi.

View file

@ -1,5 +1,5 @@
name=WiFiProv name=WiFiProv
version=3.0.5 version=3.0.6
author=Switi Mhaiske <sweetymhaiske@gmail.com> author=Switi Mhaiske <sweetymhaiske@gmail.com>
maintainer=Hristo Gochkov <hristo@espressif.com> maintainer=Hristo Gochkov <hristo@espressif.com>
sentence=Enables provisioning. sentence=Enables provisioning.

View file

@ -1,5 +1,5 @@
name=Wire name=Wire
version=3.0.5 version=3.0.6
author=Hristo Gochkov author=Hristo Gochkov
maintainer=Hristo Gochkov <hristo@espressif.com> maintainer=Hristo Gochkov <hristo@espressif.com>
sentence=Allows the communication between devices or sensors connected via Two Wire Interface Bus. For esp8266 boards. sentence=Allows the communication between devices or sensors connected via Two Wire Interface Bus. For esp8266 boards.

View file

@ -1,5 +1,5 @@
name=Zigbee name=Zigbee
version=3.0.5 version=3.0.6
author=P-R-O-C-H-Y author=P-R-O-C-H-Y
maintainer=Jan Procházka <jan.prochazka@espressif.com> maintainer=Jan Procházka <jan.prochazka@espressif.com>
sentence=Enables zigbee connection with the ESP32 sentence=Enables zigbee connection with the ESP32

View file

@ -1,6 +1,6 @@
{ {
"name": "framework-arduinoespressif32", "name": "framework-arduinoespressif32",
"version": "3.0.5", "version": "3.0.6",
"description": "Arduino Wiring-based Framework for the Espressif ESP32, ESP32-S and ESP32-C series of SoCs", "description": "Arduino Wiring-based Framework for the Espressif ESP32, ESP32-S and ESP32-C series of SoCs",
"keywords": [ "keywords": [
"framework", "framework",

View file

@ -42,7 +42,7 @@
{ {
"packager": "esp32", "packager": "esp32",
"name": "esp32-arduino-libs", "name": "esp32-arduino-libs",
"version": "idf-release_v5.1-33fbade6" "version": "idf-release_v5.1-632e0c2a"
}, },
{ {
"packager": "esp32", "packager": "esp32",
@ -105,63 +105,63 @@
"tools": [ "tools": [
{ {
"name": "esp32-arduino-libs", "name": "esp32-arduino-libs",
"version": "idf-release_v5.1-33fbade6", "version": "idf-release_v5.1-632e0c2a",
"systems": [ "systems": [
{ {
"host": "i686-mingw32", "host": "i686-mingw32",
"url": "https://github.com/espressif/esp32-arduino-lib-builder/releases/download/idf-release_v5.1/esp32-arduino-libs-idf-release_v5.1-33fbade6.zip", "url": "https://github.com/espressif/esp32-arduino-lib-builder/releases/download/idf-release_v5.1/esp32-arduino-libs-idf-release_v5.1-632e0c2a.zip",
"archiveFileName": "esp32-arduino-libs-idf-release_v5.1-33fbade6.zip", "archiveFileName": "esp32-arduino-libs-idf-release_v5.1-632e0c2a.zip",
"checksum": "SHA-256:578f325fa9fca635d9c6c3b19726cb26077751e3155b677317bde2e0b371df7d", "checksum": "SHA-256:5c3bdfeb5396fb5272d374122d9563458517820ddb35dd846c119fc6a741abe9",
"size": "309285463" "size": "309891323"
}, },
{ {
"host": "x86_64-mingw32", "host": "x86_64-mingw32",
"url": "https://github.com/espressif/esp32-arduino-lib-builder/releases/download/idf-release_v5.1/esp32-arduino-libs-idf-release_v5.1-33fbade6.zip", "url": "https://github.com/espressif/esp32-arduino-lib-builder/releases/download/idf-release_v5.1/esp32-arduino-libs-idf-release_v5.1-632e0c2a.zip",
"archiveFileName": "esp32-arduino-libs-idf-release_v5.1-33fbade6.zip", "archiveFileName": "esp32-arduino-libs-idf-release_v5.1-632e0c2a.zip",
"checksum": "SHA-256:578f325fa9fca635d9c6c3b19726cb26077751e3155b677317bde2e0b371df7d", "checksum": "SHA-256:5c3bdfeb5396fb5272d374122d9563458517820ddb35dd846c119fc6a741abe9",
"size": "309285463" "size": "309891323"
}, },
{ {
"host": "arm64-apple-darwin", "host": "arm64-apple-darwin",
"url": "https://github.com/espressif/esp32-arduino-lib-builder/releases/download/idf-release_v5.1/esp32-arduino-libs-idf-release_v5.1-33fbade6.zip", "url": "https://github.com/espressif/esp32-arduino-lib-builder/releases/download/idf-release_v5.1/esp32-arduino-libs-idf-release_v5.1-632e0c2a.zip",
"archiveFileName": "esp32-arduino-libs-idf-release_v5.1-33fbade6.zip", "archiveFileName": "esp32-arduino-libs-idf-release_v5.1-632e0c2a.zip",
"checksum": "SHA-256:578f325fa9fca635d9c6c3b19726cb26077751e3155b677317bde2e0b371df7d", "checksum": "SHA-256:5c3bdfeb5396fb5272d374122d9563458517820ddb35dd846c119fc6a741abe9",
"size": "309285463" "size": "309891323"
}, },
{ {
"host": "x86_64-apple-darwin", "host": "x86_64-apple-darwin",
"url": "https://github.com/espressif/esp32-arduino-lib-builder/releases/download/idf-release_v5.1/esp32-arduino-libs-idf-release_v5.1-33fbade6.zip", "url": "https://github.com/espressif/esp32-arduino-lib-builder/releases/download/idf-release_v5.1/esp32-arduino-libs-idf-release_v5.1-632e0c2a.zip",
"archiveFileName": "esp32-arduino-libs-idf-release_v5.1-33fbade6.zip", "archiveFileName": "esp32-arduino-libs-idf-release_v5.1-632e0c2a.zip",
"checksum": "SHA-256:578f325fa9fca635d9c6c3b19726cb26077751e3155b677317bde2e0b371df7d", "checksum": "SHA-256:5c3bdfeb5396fb5272d374122d9563458517820ddb35dd846c119fc6a741abe9",
"size": "309285463" "size": "309891323"
}, },
{ {
"host": "x86_64-pc-linux-gnu", "host": "x86_64-pc-linux-gnu",
"url": "https://github.com/espressif/esp32-arduino-lib-builder/releases/download/idf-release_v5.1/esp32-arduino-libs-idf-release_v5.1-33fbade6.zip", "url": "https://github.com/espressif/esp32-arduino-lib-builder/releases/download/idf-release_v5.1/esp32-arduino-libs-idf-release_v5.1-632e0c2a.zip",
"archiveFileName": "esp32-arduino-libs-idf-release_v5.1-33fbade6.zip", "archiveFileName": "esp32-arduino-libs-idf-release_v5.1-632e0c2a.zip",
"checksum": "SHA-256:578f325fa9fca635d9c6c3b19726cb26077751e3155b677317bde2e0b371df7d", "checksum": "SHA-256:5c3bdfeb5396fb5272d374122d9563458517820ddb35dd846c119fc6a741abe9",
"size": "309285463" "size": "309891323"
}, },
{ {
"host": "i686-pc-linux-gnu", "host": "i686-pc-linux-gnu",
"url": "https://github.com/espressif/esp32-arduino-lib-builder/releases/download/idf-release_v5.1/esp32-arduino-libs-idf-release_v5.1-33fbade6.zip", "url": "https://github.com/espressif/esp32-arduino-lib-builder/releases/download/idf-release_v5.1/esp32-arduino-libs-idf-release_v5.1-632e0c2a.zip",
"archiveFileName": "esp32-arduino-libs-idf-release_v5.1-33fbade6.zip", "archiveFileName": "esp32-arduino-libs-idf-release_v5.1-632e0c2a.zip",
"checksum": "SHA-256:578f325fa9fca635d9c6c3b19726cb26077751e3155b677317bde2e0b371df7d", "checksum": "SHA-256:5c3bdfeb5396fb5272d374122d9563458517820ddb35dd846c119fc6a741abe9",
"size": "309285463" "size": "309891323"
}, },
{ {
"host": "aarch64-linux-gnu", "host": "aarch64-linux-gnu",
"url": "https://github.com/espressif/esp32-arduino-lib-builder/releases/download/idf-release_v5.1/esp32-arduino-libs-idf-release_v5.1-33fbade6.zip", "url": "https://github.com/espressif/esp32-arduino-lib-builder/releases/download/idf-release_v5.1/esp32-arduino-libs-idf-release_v5.1-632e0c2a.zip",
"archiveFileName": "esp32-arduino-libs-idf-release_v5.1-33fbade6.zip", "archiveFileName": "esp32-arduino-libs-idf-release_v5.1-632e0c2a.zip",
"checksum": "SHA-256:578f325fa9fca635d9c6c3b19726cb26077751e3155b677317bde2e0b371df7d", "checksum": "SHA-256:5c3bdfeb5396fb5272d374122d9563458517820ddb35dd846c119fc6a741abe9",
"size": "309285463" "size": "309891323"
}, },
{ {
"host": "arm-linux-gnueabihf", "host": "arm-linux-gnueabihf",
"url": "https://github.com/espressif/esp32-arduino-lib-builder/releases/download/idf-release_v5.1/esp32-arduino-libs-idf-release_v5.1-33fbade6.zip", "url": "https://github.com/espressif/esp32-arduino-lib-builder/releases/download/idf-release_v5.1/esp32-arduino-libs-idf-release_v5.1-632e0c2a.zip",
"archiveFileName": "esp32-arduino-libs-idf-release_v5.1-33fbade6.zip", "archiveFileName": "esp32-arduino-libs-idf-release_v5.1-632e0c2a.zip",
"checksum": "SHA-256:578f325fa9fca635d9c6c3b19726cb26077751e3155b677317bde2e0b371df7d", "checksum": "SHA-256:5c3bdfeb5396fb5272d374122d9563458517820ddb35dd846c119fc6a741abe9",
"size": "309285463" "size": "309891323"
} }
] ]
}, },

View file

@ -1,5 +1,5 @@
name=ESP32 Arduino name=ESP32 Arduino
version=3.0.5 version=3.0.6
tools.esp32-arduino-libs.path={runtime.platform.path}/tools/esp32-arduino-libs tools.esp32-arduino-libs.path={runtime.platform.path}/tools/esp32-arduino-libs
tools.esp32-arduino-libs.path.windows={runtime.platform.path}\tools\esp32-arduino-libs tools.esp32-arduino-libs.path.windows={runtime.platform.path}\tools\esp32-arduino-libs