diff --git a/.gitignore b/.gitignore index 83bbbfe6..d2ff9ed3 100644 --- a/.gitignore +++ b/.gitignore @@ -20,3 +20,4 @@ html/*.min.html html/locales/*.min.json html/js/*.min.min.js html/js/swaggerInitializer.min.js +managed_components/ diff --git a/changelog.md b/changelog.md index eb208a27..faae041c 100644 --- a/changelog.md +++ b/changelog.md @@ -2,6 +2,8 @@ ## DEV-branch +* 22.10.2024: Cleaning up `management.html` (#348), thanks to @trainbird ! +* 22.10.2024: Update Arduino-IRremote to support the ESP 3.0 core * 29.09.2024: Removal of support for non-PSRAM HALs (Lolin32, LolinD32, DevkitC) and ESP32-A1S * 29.09.2024: Prepare for Arduino 3.0.5 * 27.09.2024: PlatformIO package 6.9.0 diff --git a/platformio.ini b/platformio.ini index 2951e6f3..faa4f567 100644 --- a/platformio.ini +++ b/platformio.ini @@ -17,7 +17,7 @@ board_build.flash_mode = qio board_build.bootloader = dio board_build.partitions = custom_4mb_noota.csv platform = espressif32@^6.9.0 -;platform = https://github.com/pioarduino/platform-espressif32/releases/download/51.03.05/platform-espressif32.zip ; Arduino 3.0.5 +;platform = https://github.com/pioarduino/platform-espressif32/releases/download/51.03.06/platform-espressif32.zip ; Arduino 3.0.6 ;framework = arduino framework = arduino, espidf monitor_speed = 115200 @@ -34,17 +34,16 @@ lib_deps = https://github.com/madhephaestus/ESP32Encoder.git#2c986e0 https://github.com/knolleary/pubsubclient.git#2d228f2 https://github.com/peterus/ESP-FTP-Server-Lib#554959f -; https://github.com/tueddy/FastLED.git#3.6.0_IRAM ;save some IRAM to compile with all features (https://github.com/FastLED/FastLED.git@3.6.0) https://github.com/FastLED/FastLED.git#de02bc1 ; v3.7.8 - https://github.com/mathieucarbou/ESPAsyncWebServer.git#74b16d6 ; v3.3.1 + https://github.com/mathieucarbou/ESPAsyncWebServer.git#cb4b4de ; v3.3.17 https://github.com/bblanchon/ArduinoJson.git#40ee05c - https://github.com/pschatzmann/arduino-audio-tools.git#9d63174 ; v0.9.8 + https://github.com/pschatzmann/arduino-audio-tools.git#9d63174 ; v0.9.8 https://github.com/pschatzmann/ESP32-A2DP.git#bb5bc2f - https://github.com/Arduino-IRremote/Arduino-IRremote.git#b962db8 ; v4.3.1 + https://github.com/Arduino-IRremote/Arduino-IRremote.git#610d116 ; v4.4.1 https://github.com/kkloesener/MFRC522_I2C.git#121a27e https://github.com/tueddy/rfid.git#caa3e6d ; avoid warnings, fork from https://github.com/miguelbalboa/rfid.git#0ff12a1 https://github.com/tuniii/LogRingBuffer.git#89d7d3e - https://github.com/tueddy/PN5180-Library.git#7ba0289 + https://github.com/tueddy/PN5180-Library.git#3b7730a ;v2.3.1 https://github.com/SZenglein/Arduino-MAX17055_Driver#75cdfcf https://github.com/tueddy/natsort.git#ebbf660 ; avoid warnings, fork from https://github.com/sourcefrog/natsort.git#cdd8df9 diff --git a/src/IrReceiver.cpp b/src/IrReceiver.cpp index 2e50b1c3..edaa93c5 100644 --- a/src/IrReceiver.cpp +++ b/src/IrReceiver.cpp @@ -10,7 +10,7 @@ #include "System.h" #ifdef IR_CONTROL_ENABLE - #include + #include #endif // HW-Timer @@ -20,7 +20,7 @@ uint32_t IrReceiver_LastRcCmdTimestamp = 0u; void IrReceiver_Init() { #ifdef IR_CONTROL_ENABLE - IrReceiver.begin(IRLED_PIN); + IrReceiver.begin(IRLED_PIN); #endif } diff --git a/src/Led.cpp b/src/Led.cpp index 165c02c9..61987353 100644 --- a/src/Led.cpp +++ b/src/Led.cpp @@ -104,7 +104,7 @@ void Led_Init(void) { xTaskCreatePinnedToCore( Led_Task, /* Function to implement the task */ "Led_Task", /* Name of the task */ - 1512, /* Stack size in words */ + 1768, /* Stack size in words */ NULL, /* Task input parameter */ 1, /* Priority of the task */ &Led_TaskHandle, /* Task handle. */ diff --git a/src/revision.h b/src/revision.h index eade3715..386bfb67 100644 --- a/src/revision.h +++ b/src/revision.h @@ -1,4 +1,4 @@ #pragma once #include "gitrevision.h" -constexpr const char softwareRevision[] = "Software-revision: 20240929-1-DEV"; +constexpr const char softwareRevision[] = "Software-revision: 20241022-1-DEV";