Ivan Grokhotkov
Ivan Grokhotkov
In the case of esp-bsp, indeed we keep examples outside of component directories, since the examples are kind of designed to be common between the BSPs. To make the examples...
They definitely can be used to speed up color fill and similar operations. LVGL project is implementing the parallel drawing framework, which will allow the port layer to define handlers...
Do note that modifying sdkconfig.defaults after sdkconfig has been already generated has no effect: the build system will not generate sdkconfig again unless it is deleted.
This might be something we could support in https://github.com/espressif/esp-idf-cxx repository, which contains C++-specific libraries for ESP-IDF. I would suggest moving this issue there.
@SoucheSouche just to clarify the feature request: it is to provide a logging API which can take fmt-compatible format strings. For example, to let C++ developers use something like `esp::log::error(tag,...
> What I thought about was re-implementing these components specifically for C++, written in C++ using modern containers, etc. One possible downside to consider in this approach is that it...
Looks like you are enabling 4-line mode. In this case, you can try keeping DDR enabled, this should result in higher read speeds. Supporting exactly 52 MHz is not possible...
ESP_ERR_INVALID_CRC is a CRC error. This is typically related to the hardware design. Probably there is some signal integrity issue with your eMMC connection. If you have designed a PCB...
Hi @marchingband, sorry for missing your previous message. The chip we used was IS21ES08G-JCLI. One additional thing you can try is adjusting sampling delay on the ESP32-S3 side. There is...
@marchingband I tried to make some simple changes to get the 52 MHz (53.3 actually) mode to work. The good news is, without DDR enabled it works after a very...