Merge branch 'development' into prerelease-14.0.0

This commit is contained in:
Theo Arends 2024-05-08 13:27:08 +02:00
commit 45d3124602
4 changed files with 25 additions and 1 deletions

View File

@ -55,6 +55,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)

View File

@ -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)

View File

@ -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
#

View File

@ -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) {