Search found 49 matches

by sukeshak
Sun Feb 11, 2024 4:50 pm
Forum: ESP-IDF
Topic: partition > 8MB
Replies: 1
Views: 440

Re: partition > 8MB

Your actual file size requirements might be larger
https://github.com/espressif/esp-idf/issues/9913

You can create a fat partition and store your gif/raw files there instead of in a factory app partition which is used for firmware.
by sukeshak
Sun Feb 11, 2024 4:42 pm
Forum: ESP-IDF
Topic: hidden menu item of idf.py menuconfig
Replies: 8
Views: 857

Re: hidden menu item of idf.py menuconfig

PSRAM settings come under
Component config > ESP PSRAM
by sukeshak
Sun Feb 11, 2024 4:39 pm
Forum: ESP-IDF
Topic: ESP-IDF V5 & LVGL V8
Replies: 2
Views: 376

Re: ESP-IDF V5 & LVGL V8

You can check if this helps though its been a while I checked
https://github.com/sukesh-ak/ESP32-LVGL8x-SDSPI
by sukeshak
Thu Sep 22, 2022 11:10 am
Forum: ESP-IDF
Topic: Is there a way to have ESP32 send its logs to a web server?
Replies: 6
Views: 23075

Re: Is there a way to have ESP32 send its logs to a web server?

I have a bunch of ESP32s at remote locations, they are all flashed with OTA. I'd like to be able to see their logs without having to be at their location in case I have some issues I'd like to troubleshoot. Besides them at the same location are PCs that I have access to via Anydesk, so I'd either l...
by sukeshak
Thu Sep 22, 2022 11:03 am
Forum: ESP-IDF
Topic: VSCode Espressif IDF extension forked version of ESP-IDF
Replies: 1
Views: 1166

Re: VSCode Espressif IDF extension forked version of ESP-IDF

You can use ESP-IDF docker and use custom images to achieve it. You can select branch or tag for the version. https://docs.espressif.com/projects/esp-idf/en/latest/esp32/api-guides/tools/idf-docker-image.html docker build -t idf-custom:v4.4.1-esp32c3 \ --build-arg IDF_CLONE_BRANCH_OR_TAG=v4.4.1 \ --...
by sukeshak
Thu Sep 22, 2022 11:00 am
Forum: ESP-IDF
Topic: Using IDF 4.4 and 5.0 in VC on Windows
Replies: 3
Views: 1503

Re: Using IDF 4.4 and 5.0 in VC on Windows

I have some projects already developed on IDF 4.4, but now I have a new one and I want to use 5.0. Is there any way to use two different IDF versions with Visual Code extension? Using Espressif docker versions are much easier and cleaner. https://hub.docker.com/r/espressif/idf And VS Code supports ...
by sukeshak
Thu Sep 22, 2022 10:50 am
Forum: ESP-IDF
Topic: Dealing with an ESP-IDF project that needs to support many PCB revisions?
Replies: 5
Views: 3238

Re: Dealing with an ESP-IDF project that needs to support many PCB revisions?

You can check this example to see how I had done it. In my case using same project with ESP32 & ESP32-S3 https://github.com/sukesh-ak/ESP32-LVGL8x-SDSPI Main issue is that sdconfig file gets overwritten in the project root when you run menuconfig . This means when you rebuild, it goes through full c...
by sukeshak
Thu Sep 22, 2022 10:44 am
Forum: ESP-IDF
Topic: Change IDF_TARGET in VSCode
Replies: 1
Views: 3333

Re: Change IDF_TARGET in VSCode

Try installing the correct support package of ESP-IDF from here. In your case esp32-s3
https://idf.espressif.com/
by sukeshak
Tue Feb 22, 2022 5:19 pm
Forum: Sample Code
Topic: ESP-IDF & Arduino samples for WT32-SC01 using LVGL8 + LOVYANGFX
Replies: 0
Views: 9168

ESP-IDF & Arduino samples for WT32-SC01 using LVGL8 + LOVYANGFX

Device : WT32-SC01 (Check readme on the github repo for the complete specs) - ESP32 WROVER-B - 3.5" 480x320 ST7796S TFT Display - Capacitive touchscreen FT6336U - Default 4MB Flash & 8MB PSRAM Display / Touch Drivers : LovyanGFX Widgets : LVGL 8.x ESP-IDF => WT32-SC01 + LVGL8 + LOVYANGFX https://git...
by sukeshak
Tue Feb 22, 2022 5:15 pm
Forum: ESP-IDF
Topic: Build Errors : LVGL example project
Replies: 2
Views: 2518

Re: Build Errors : LVGL example project

Here is a working complete sample. Several boards will be auto detected by LOVYANGFX! ESP-IDF & Arduino samples for WT32-SC01 using LVGL8 + LOVYANGFX Device : WT32-SC01 Display / Touch Drivers : LovyanGFX Widgets : LVGL 8.x ESP-IDF => WT32-SC01 + LVGL8 + LOVYANGFX https://github.com/sukesh-ak/LVGL8-...