Search found 5 matches

by Riscy00
Thu Jun 06, 2024 10:04 pm
Forum: ESP-IDF
Topic: ESP32H2: The build text layout keep reseting terminal to display memory map after build
Replies: 1
Views: 354

ESP32H2: The build text layout keep reseting terminal to display memory map after build

ESP32H2 VSC: The build keep cleariing build message terminal to display memory map text after the build. How to stop this? I tried to use using idf.py build -v with verbose in the python command below (task.json) where I run the task via command palette and selected Build/Verboke, it does not work b...
by Riscy00
Mon Jun 03, 2024 6:04 pm
Forum: ESP-IDF
Topic: ESP32-H2 UART RX/TX buffer is 260 byte, the demo code is set to 2048 byte?
Replies: 1
Views: 505

ESP32-H2 UART RX/TX buffer is 260 byte, the demo code is set to 2048 byte?

In reference to the demo code <uart_async_rxtxtasks> installed into VSC with ESP32-H2-Mini1 device. I note from datasheet the FIFO is 260 Byte in RAM shared between UART0 and UART1. I have setup UART1 for general serial comm of my design while UART0 is used for flashing and monitor role. I note the ...
by Riscy00
Thu May 16, 2024 3:04 pm
Forum: ESP-IDF
Topic: impossible to override default sdkconfig settings
Replies: 7
Views: 5497

Re: impossible to override default sdkconfig settings

I just figured out now, the sdkconfig need to be deleted or renamed sdkconfigold so that sdkconfig_default can be applied to new sdkconfig!
by Riscy00
Thu May 16, 2024 2:37 pm
Forum: ESP-IDF
Topic: ESP32H2, VSC: Config exception flag not set or ignored.
Replies: 1
Views: 569

Re: ESP32H2, VSC: Config exception flag not set or ignored.

I have add this from the top level CMAKE file, which did not work. # For more information about build system see # https://docs.espressif.com/projects/esp-idf/en/latest/api-guides/build-system.html # The following five lines of boilerplate have to be in your project's # CMakeLists in this exact orde...
by Riscy00
Wed May 15, 2024 7:21 pm
Forum: ESP-IDF
Topic: ESP32H2, VSC: Config exception flag not set or ignored.
Replies: 1
Views: 569

ESP32H2, VSC: Config exception flag not set or ignored.

ESP32-H2 ESP-IDF 5.2.1 C++ coding practice with exception I have reviewed the https://github.com/espressif/esp-idf/tree/v5.2.1/examples/cxx/exceptions and ESP-IDF programming manual. I have added simple exception statement #include <stdexcept> //using std::invalid_argument //=======================...