Maksims Matjakubovs

Results 9 comments of Maksims Matjakubovs

I also noticed the problem and it's definitely Bug ! I think correct way to fix it is to add one condition in place we adding new line characters. In...

Have the same bug probably when called function: `aligned_alloc();` Module: ESP32 Do not use mesh, but work with ESP-IDF only. ( @wujiangang Wonder why this issue moved to ESP-MDF )...

More detailde investigation in .log file show the problem source: - compiled binary filename is: app-template.bin - but final stage looking for binary name: TTS_BigTarget.bin

Problem resolved by fixing top level CMakeLists.txt ``` project(app-template) ``` replaced with : ``` get_filename_component(ProjectId ${CMAKE_CURRENT_LIST_DIR} NAME) string(REPLACE " " "_" ProjectId ${ProjectId}) project(${ProjectId}) ```

Sorry, Did you tried it similar way to https://github.com/Armchair-Software/emscripten-browser-clipboard ? This one worked for me, had to find correct place to register callbacks, it is after "ImGui::CreateContext();" in my case.

Probably known chip/silicon bug of S3/C3 and possibly others, but not old ESP32 (it work ok). Here you could find details: https://github.com/espressif/esp-idf/issues/8487

What you are asking is not related to SPI probably. It's about how data are stored in memory. SPI transfer data from memory in which data are in little endian...

You can manual control CS or use flags==SPI_TRANS_CS_KEEP_ACTIVE and do multiple SPI transactions to form one with exactly what you need.

Hi, Nice work ! But " Build using --use-port=contrib.glfw3: [demo](https://pongasoft.github.io/imgui/pr-7647/use_port_contrib_glfw3)" with my system: Linux / Chrome (with enabled WebGPU) I noticed problems: 1) Do not resize to full-screen on "F11"...