Search found 5 matches

by Dakshk
Sat Sep 28, 2024 8:41 am
Forum: ESP-IDF
Topic: GCOV Integration with ESP - IDF
Replies: 1
Views: 1140

Re: [SOLVED] GCOV Integration with ESP - IDF

I managed to generate Coverage report for ESP32C3 by using in-built JTAG and This is how did it -> Connect USB pins D+ and D- i.e. GPIO 19,18 with the Host system -> Start a debugging session, in my case I used ESP-IDE -> Run telnet session in another IDF terminal in the project folder of with you w...
by Dakshk
Tue Sep 24, 2024 7:14 am
Forum: ESP-IDF
Topic: GCOV Integration with ESP - IDF
Replies: 1
Views: 1140

GCOV Integration with ESP - IDF

Hello Guys, I am trying to generate gcov files, but not able to do so I am using ESP32c3 and ESP32-Wroom-32 both. With the wroom board I have attached external Jlink and running openocd commands given in the example named "gcov", but getting error as shown in the image. If anybody has solved the iss...
by Dakshk
Fri Jun 07, 2024 10:40 am
Forum: ESP-IDF
Topic: Solved : ESP32C3 debugging with external JTAG/Jlink (works for IDE and IDF)
Replies: 0
Views: 477

Solved : ESP32C3 debugging with external JTAG/Jlink (works for IDE and IDF)

Hello, I wanted to debug ESP32c3 using external JTAG using pins GPIO 4-7, which is possible as mentioned here: https://docs.espressif.com/projects/esp-idf/en/v5.2.2/esp32c3/api-guides/jtag-debugging/configure-other-jtag.html . But while doing this I faced many errors and so I am putting this solutio...
by Dakshk
Fri Jun 07, 2024 4:46 am
Forum: General Discussion
Topic: Re: [SOLVED]Issues in Non-Blocking/Interrupt Based UART
Replies: 0
Views: 468

Re: [SOLVED]Issues in Non-Blocking/Interrupt Based UART

Error can be solved by following method though I do not recommend that, but it can implement interrupt based UART and you can have functioning code. So, our approach was to use the function isr_register and isr_free which were removed in newer version of IDF, for that you have to make few changes in...
by Dakshk
Tue May 21, 2024 11:23 am
Forum: ESP-IDF
Topic: Issues in Non-Blocking/Interrupt Based UART
Replies: 0
Views: 754

Issues in Non-Blocking/Interrupt Based UART

I am trying to implement Non-Blocking UART with help of Interrupts and I saw many references and went through all example codes but couldn't find the relevant code. Can anybody guide me through for implementing following function. So my main target is simple I just want and ISR function for Receivin...