Skip to content

Commit 08ab3f2

Browse files
committed
esp_lcd_panel_rgb.h not found for env [esp32] #610
1 parent 7b4b851 commit 08ab3f2

File tree

6 files changed

+23
-120
lines changed

6 files changed

+23
-120
lines changed

dependencies.lock

Lines changed: 1 addition & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -21,31 +21,6 @@ dependencies:
2121
registry_url: https://components.espressif.com/
2222
type: service
2323
version: 0.6.0~1
24-
espressif/esp-dsp:
25-
component_hash: 3e7bbd487f1357a1d4944d0c85966d049501ea281b8a4c7f93f7cfedd5b7f23d
26-
dependencies:
27-
- name: idf
28-
registry_url: https://components.espressif.com
29-
require: private
30-
version: '>=4.2'
31-
source:
32-
registry_url: https://components.espressif.com
33-
type: service
34-
version: 1.4.12
35-
espressif/esp-sr:
36-
component_hash: 9b41fd5ae5960c393bfd3559cd6e5fa2a95c0bf833915cebafe57fb8c4e4c396
37-
dependencies:
38-
- name: espressif/esp-dsp
39-
registry_url: https://components.espressif.com
40-
require: private
41-
version: <=1.5.0
42-
- name: idf
43-
require: private
44-
version: '>=5.0'
45-
source:
46-
registry_url: https://components.espressif.com/
47-
type: service
48-
version: 1.9.5
4924
espressif/esp-zboss-lib:
5025
component_hash: fad683f7e04366398b61c0eea6e6517d4fe7ec4112407e26743dc80bafc0dcdc
5126
dependencies:
@@ -114,7 +89,6 @@ dependencies:
11489
direct_dependencies:
11590
- chmorgan/esp-libhelix-mp3
11691
- espressif/cbor
117-
- espressif/esp-sr
11892
- espressif/esp-zboss-lib
11993
- espressif/esp-zigbee-lib
12094
- espressif/esp_modem
@@ -123,5 +97,5 @@ direct_dependencies:
12397
- idf
12498
- joltwallet/littlefs
12599
manifest_hash: d5b61e33b1ecefaeb4d0744cd599ab93af1faa45dd6d76a73bb99a4444cbcdc3
126-
target: esp32s3
100+
target: esp32
127101
version: 2.0.0

lib/tftLib/tft_rgb.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// first release on 01/2025
22
// updated on Feb 12 2025
3-
3+
#ifdef CONFIG_IDF_TARGET_ESP32S3
44

55
#include "Arduino.h"
66
#include "tft_rgb.h"
@@ -4806,3 +4806,4 @@ void TFT_RGB::png_draw_into_Framebuffer(uint16_t x, uint16_t y, uint16_t w, uint
48064806
panelDrawBitmap(x, y, x + w, y + h, &m_framebuffer[0][y * m_h_res + x]);
48074807
}
48084808
// —————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————
4809+
#endif // CONFIG_IDF_TARGET_ESP32S3

lib/tftLib/tft_rgb.h

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// first release on 01/2025
22
// updated on Feb 11 2025
3-
3+
#ifdef CONFIG_IDF_TARGET_ESP32S3
44

55
#pragma once
66

@@ -718,6 +718,5 @@ class TFT_RGB {
718718
void png_rgb18btouint32(uint32_t* dst, png_s_rgb18b* src);
719719
void png_rgb16btouint32(uint32_t* dst, png_s_rgb16b* src);
720720
void png_draw_into_Framebuffer(uint16_t x, uint16_t y, uint16_t w, uint16_t h, char* rgbaBuffer, uint32_t png_outbuff_size, uint8_t png_format);
721-
722-
723-
};
721+
};
722+
#endif // CONFIG_IDF_TARGET_ESP32S3

0 commit comments

Comments
 (0)