Search found 8 matches
- Wed Aug 06, 2025 10:54 pm
- Forum: General Discussion
- Topic: ESP-BSP: ePaper display code: problem
- Replies: 2
- Views: 130
Re: ESP-BSP: ePaper display code: problem
I have created a pull request, #612 (https://github.com/espressif/esp-bsp/pull/612). It adds support for non-rectangular epaper displays with at least one dimension larger than 200. 200 is the limit of the SSD1681 controller; larger dimensions use SSD1680 controller.
- Thu Jul 03, 2025 8:09 pm
- Forum: General Discussion
- Topic: ESP-BSP: ePaper display code: problem
- Replies: 2
- Views: 130
Re: ESP-BSP: ePaper display code: problem
SOLVED!
I discovered there is a pull request that addresses this problem: https://github.com/espressif/esp-bsp/pull/521 . I guess it's not in the master/primary yet.
The master code reads:
#define SSD1681_CMD_OUTPUT_CTRL 0x01
#define SSD1681_PARAM_OUTPUT_CTRL ((uint8_t[]) {0xc7, 0x00, 0x00})
And ...
I discovered there is a pull request that addresses this problem: https://github.com/espressif/esp-bsp/pull/521 . I guess it's not in the master/primary yet.
The master code reads:
#define SSD1681_CMD_OUTPUT_CTRL 0x01
#define SSD1681_PARAM_OUTPUT_CTRL ((uint8_t[]) {0xc7, 0x00, 0x00})
And ...
- Thu Jul 03, 2025 3:29 am
- Forum: General Discussion
- Topic: ESP-BSP: ePaper display code: problem
- Replies: 2
- Views: 130
ESP-BSP: ePaper display code: problem
ESP-BSP contains sample code for a Waveshare 1.54" square eInk display that measures 200x200 bits.
The code can be found at esp-bsp/components/lcd/esp_lcd_ssd1681.
I hope someone who has used this code can help me. I'm trying to adapt it for other Waveshare eInk displays.
SSD1681 is an interface ...
The code can be found at esp-bsp/components/lcd/esp_lcd_ssd1681.
I hope someone who has used this code can help me. I'm trying to adapt it for other Waveshare eInk displays.
SSD1681 is an interface ...
- Tue May 27, 2025 12:21 am
- Forum: IDEs for ESP-IDF
- Topic: Cannot find IDF_PATH/components
- Replies: 5
- Views: 1377
Re: Cannot find IDF_PATH/components
I noted that I'm now seeing this error:
/esp-idf/components/esp_lcd/rgb/esp_lcd_panel_rgb.c:686:1: internal compiler error: Segmentation fault
Other people have seen this error and it has been filed at https://github.com/espressif/esp-idf/issues/12180.
Based on this report, I think the bug appears ...
/esp-idf/components/esp_lcd/rgb/esp_lcd_panel_rgb.c:686:1: internal compiler error: Segmentation fault
Other people have seen this error and it has been filed at https://github.com/espressif/esp-idf/issues/12180.
Based on this report, I think the bug appears ...
- Mon May 26, 2025 8:29 pm
- Forum: IDEs for ESP-IDF
- Topic: Cannot find IDF_PATH/components
- Replies: 5
- Views: 1377
Re: Cannot find IDF_PATH/components
I found such a bug (or feature) :)
If you upload a project with the "Search for nested projects" field marked, then a bunch of errors about undiscovered libraries appear. And if you download with the "Search for nested projects" unchecked, then everything compiles normally.
Interesting, but not ...
- Mon May 26, 2025 8:15 pm
- Forum: IDEs for ESP-IDF
- Topic: Cannot find IDF_PATH/components
- Replies: 5
- Views: 1377
Re: Cannot find IDF_PATH/components
Hello,
Could you replace add_subdirectory(esp_idf/mini_epaper_s3 ) with the set(EXTRA_COMPONENT_DIRS "esp_idf/mini_epaper_s3") see if that helps?
set(EXTRA_COMPONENT_DIRS "esp_idf/mini_epaper_s3")
More on this here - https://docs.espressif.com/projects/esp-idf/en/stable/esp32/api-guides/build ...
- Thu May 22, 2025 12:53 am
- Forum: IDEs for ESP-IDF
- Topic: Cannot find IDF_PATH/components
- Replies: 5
- Views: 1377
Cannot find IDF_PATH/components
Project fails to compile, cannot find esp_sleep.h . I am using ESP-IDF v5.4 in VSCode in Windows 11 Pro. I have never had a problem like this with other ESP-IDF projects. I believe this is a problem in c_cpp_properties.json (found in .vscode directory). And I think the problem ultimately arises from ...
- Wed Sep 25, 2024 5:47 pm
- Forum: ESP-IDF
- Topic: How to remove multi-project config
- Replies: 0
- Views: 2228
How to remove multi-project config
Using ESP-IDF extension in VSCode in Windows 10 Pro.
I wanted my project to have two different targets: ESP32c6 with 2.9 inch ePaper and ESP32s3 with 2.7 inch ePaper. So I used ESP-IDF: Open Project Configuration and then select config with ESP-IDF: Select Project Configuration . I was never able ...
I wanted my project to have two different targets: ESP32c6 with 2.9 inch ePaper and ESP32s3 with 2.7 inch ePaper. So I used ESP-IDF: Open Project Configuration and then select config with ESP-IDF: Select Project Configuration . I was never able ...