From 1d626225de4ba32b0597eaebc86c8658dabee3da Mon Sep 17 00:00:00 2001 From: chefpro Date: Wed, 8 May 2024 09:18:51 +0200 Subject: [PATCH 1/3] Add display.ini file for esp32-1732S019 development board which is based on esp32s3 (#21384) Co-authored-by: Peter Rustler --- .../esp32s3-esp32-1732S019_display.ini | 22 +++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 tasmota/displaydesc/esp32s3-esp32-1732S019_display.ini diff --git a/tasmota/displaydesc/esp32s3-esp32-1732S019_display.ini b/tasmota/displaydesc/esp32s3-esp32-1732S019_display.ini new file mode 100644 index 000000000..2c197834f --- /dev/null +++ b/tasmota/displaydesc/esp32s3-esp32-1732S019_display.ini @@ -0,0 +1,22 @@ +:H,ST7789,170,320,16,SPI,3,10,12,13,11,14,1,*,40 +:S,2,1,3,0,80,30 +:I +01,A0 +11,A0 +3A,81,55 +36,81,00 +21,80 +13,80 +29,A0 +:o,28 +:O,29 +:A,2A,2B,2C +:R,36 +:0,C0,23,00,00 +:1,A0,00,23,01 +:2,00,23,00,02 +:3,60,00,23,03 +:i,20,21 +:r,1 +:B,30,5 +# \ No newline at end of file From 61814e79feca9eb8d31baf577ee3176a30cce424 Mon Sep 17 00:00:00 2001 From: gemu Date: Wed, 8 May 2024 13:21:14 +0200 Subject: [PATCH 2/3] fix jpeg compile core3 (#21387) --- tasmota/tasmota_support/support_jpeg.ino | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasmota/tasmota_support/support_jpeg.ino b/tasmota/tasmota_support/support_jpeg.ino index 2ebce0e4c..632cb3c3f 100644 --- a/tasmota/tasmota_support/support_jpeg.ino +++ b/tasmota/tasmota_support/support_jpeg.ino @@ -66,7 +66,7 @@ typedef struct { } rgb_jpg_decoder; //input buffer -static uint32_t _jpg_read(void * arg, size_t index, uint8_t *buf, size_t len) +static size_t _jpg_read(void * arg, size_t index, uint8_t *buf, size_t len) { rgb_jpg_decoder * jpeg = (rgb_jpg_decoder *)arg; if(buf) { From 2f3663b8aa838e25272c567b8e76ff904cc74cf0 Mon Sep 17 00:00:00 2001 From: Theo Arends <11044339+arendst@users.noreply.github.com> Date: Wed, 8 May 2024 13:26:36 +0200 Subject: [PATCH 3/3] Update changelogs --- CHANGELOG.md | 1 + RELEASENOTES.md | 1 + 2 files changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index ed08a6a16..b0ec099f9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -52,6 +52,7 @@ All notable changes to this project will be documented in this file. - Conflicting log_level definitions in NimBLE (#21337) - Avoid unwanted OTA upgrade when safeboot starts for the first time (#21360) - Matter broken NOCStruct types preventing pairing with HA (#21365) +- jpeg compile core3 (#21387) ### Removed - LVGL disabled vector graphics (#21242) diff --git a/RELEASENOTES.md b/RELEASENOTES.md index b2d771a8f..d4d9ac289 100644 --- a/RELEASENOTES.md +++ b/RELEASENOTES.md @@ -212,6 +212,7 @@ The latter links can be used for OTA upgrades too like ``OtaUrl https://ota.tasm - Neopool prevent possible multiple bus requests [#21267](https://github.com/arendst/Tasmota/issues/21267) - Async HMDI CEC [#21287](https://github.com/arendst/Tasmota/issues/21287) - ESP8266 physical button/switch control when no rules activated [#21187](https://github.com/arendst/Tasmota/issues/21187) +- jpeg compile core3 [#21387](https://github.com/arendst/Tasmota/issues/21387) - ESP32 PWM activity on unconfigured PWM GPIOs [#20732](https://github.com/arendst/Tasmota/issues/20732) - Avoid unwanted OTA upgrade when safeboot starts for the first time [#21360](https://github.com/arendst/Tasmota/issues/21360) - BTHome, prep BLE5 [#20989](https://github.com/arendst/Tasmota/issues/20989)