Skip to content

Commit

Permalink
Update 3rd party libraries
Browse files Browse the repository at this point in the history
- ESPAsyncWebServer v3.3.17
- Arduino-IRremote v4.4.1
- PN5180-Library v2.3.1

- Increase stack size for LED task, see https://forum.espuino.de/t/dev-branch/1835/644
- add folder "managed_components" to .gitignore
  • Loading branch information
tueddy committed Oct 22, 2024
1 parent f99feda commit e3e9d1b
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 10 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -20,3 +20,4 @@ html/*.min.html
html/locales/*.min.json
html/js/*.min.min.js
html/js/swaggerInitializer.min.js
managed_components/
2 changes: 2 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
11 changes: 5 additions & 6 deletions platformio.ini
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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/[email protected])
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

Expand Down
4 changes: 2 additions & 2 deletions src/IrReceiver.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
#include "System.h"

#ifdef IR_CONTROL_ENABLE
#include <IRremote.h>
#include <IRremote.hpp>
#endif

// HW-Timer
Expand All @@ -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
}

Expand Down
2 changes: 1 addition & 1 deletion src/Led.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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. */
Expand Down
2 changes: 1 addition & 1 deletion src/revision.h
Original file line number Diff line number Diff line change
@@ -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";

0 comments on commit e3e9d1b

Please sign in to comment.