Hi to all, 'till yesterday I was able to program the esp32 board with the ESP-PROG. I update in visual studio the espressif version to 1.10.2 and now nothing is working. I try re-installing everything from scratch but still is not working.
Checking the OpenOCD version with
openocd --version
I ...
Search found 41 matches
- Fri Jul 11, 2025 2:57 pm
- Forum: ESP-IDF
- Topic: question about espressif 1-10-2 and OpenOCD and JTAG Ubuntu 24.04
- Replies: 0
- Views: 66
- Sun Jul 06, 2025 7:55 pm
- Forum: ESP-IDF
- Topic: sending wav to html
- Replies: 0
- Views: 52
sending wav to html
Hi to all, I'm using esp32E to send wav sound to html page . I generated a tone and tested creating a C file then compiled an using VLC to listen the sound. So this tone works.
Now I'm trying to use the esp32E to send this tone to html using this code:
ESP_ERROR_CHECK(httpd_resp_set_status(req ...
Now I'm trying to use the esp32E to send this tone to html using this code:
ESP_ERROR_CHECK(httpd_resp_set_status(req ...
- Sat Jul 05, 2025 2:39 pm
- Forum: ESP-IDF
- Topic: invalid operation Xtensa
- Replies: 9
- Views: 257
Re: invalid operation Xtensa
thanks Microcontroller for your time and help. That works!! Thanks again!!
Cheers
Gastón
Cheers
Gastón
- Sat Jul 05, 2025 1:53 am
- Forum: ESP-IDF
- Topic: invalid operation Xtensa
- Replies: 9
- Views: 257
Re: invalid operation Xtensa
I tested the code in a different board and got this output from monitor:
Guru Meditation Error: Core 0 panic'ed (InstrFetchProhibited). Exception was unhandled.
Core 0 register dump:
PC : 0xfd5dfdfe PS : 0x00060031 A0 : 0x8008b012 A1 : 0x3ffb1fb0
A2 : 0x00000003 A3 : 0x00060023 A4 : 0x00060021 ...
Guru Meditation Error: Core 0 panic'ed (InstrFetchProhibited). Exception was unhandled.
Core 0 register dump:
PC : 0xfd5dfdfe PS : 0x00060031 A0 : 0x8008b012 A1 : 0x3ffb1fb0
A2 : 0x00000003 A3 : 0x00060023 A4 : 0x00060021 ...
- Sat Jul 05, 2025 12:01 am
- Forum: ESP-IDF
- Topic: invalid operation Xtensa
- Replies: 9
- Views: 257
Re: invalid operation Xtensa
Microcontroller thanks for the reply, those codes is where the code is stopped. The debug halts there. I try to create a tone using the cos function and checking the build info I check that memory usage is correct. I also tried creating a lookup table for the cos function, but again the program ...
- Fri Jul 04, 2025 8:29 pm
- Forum: ESP-IDF
- Topic: invalid operation Xtensa
- Replies: 9
- Views: 257
Re: invalid operation Xtensa
an update,
If I change the buffer_size value to less than 2000, I got it working. But why? I alreedy disable wdt timer from esp settings.
I'm using esp32 custom board with jtag esp-prog on es-idf 5.4.1.
Now if I use above 8000 of buffer_size I got this(see attachment). Don't know why I got this ...
If I change the buffer_size value to less than 2000, I got it working. But why? I alreedy disable wdt timer from esp settings.
I'm using esp32 custom board with jtag esp-prog on es-idf 5.4.1.
Now if I use above 8000 of buffer_size I got this(see attachment). Don't know why I got this ...
- Fri Jul 04, 2025 7:40 pm
- Forum: ESP-IDF
- Topic: invalid operation Xtensa
- Replies: 9
- Views: 257
invalid operation Xtensa
Hi to all, I'm trying to generate a tone to create a wav file using esp-idf 5.4.1 and I tried to use this peace of code:
const int buffer_size = 8000;
const int sample_rate = 8000;
for(int i=0;i<buffer_size;i++)
{
buff_test[i]=(short int)(cos((2 * M_PI * 256*i)/sample_rate)*1000);
}
and I ...
const int buffer_size = 8000;
const int sample_rate = 8000;
for(int i=0;i<buffer_size;i++)
{
buff_test[i]=(short int)(cos((2 * M_PI * 256*i)/sample_rate)*1000);
}
and I ...
- Wed Jul 02, 2025 6:09 pm
- Forum: ESP-IDF
- Topic: esp-idf 5.3.1 vs 5.4.1 and esp_netif_get_ip_info
- Replies: 2
- Views: 116
Re: esp-idf 5.3.1 vs 5.4.1 and esp_netif_get_ip_info
thanks for your help. Cheers
- Wed Jul 02, 2025 4:31 pm
- Forum: ESP-IDF
- Topic: esp-idf 5.3.1 vs 5.4.1 and esp_netif_get_ip_info
- Replies: 2
- Views: 116
esp-idf 5.3.1 vs 5.4.1 and esp_netif_get_ip_info
Hi to all,
I got this peacec of code working under esp-idf 5.3.1 without any errors:
esp_netif_get_ip_info(my_staif, &ipInfo.ip);
ESP_LOGW(TAG4,"My IPV4: " IPSTR "\n", IP2STR(&ipInfo.ip));
but now under esp-idf 5.4.1 i got error message:
error: passing argument 2 of 'esp_netif_get_ip_info ...
I got this peacec of code working under esp-idf 5.3.1 without any errors:
esp_netif_get_ip_info(my_staif, &ipInfo.ip);
ESP_LOGW(TAG4,"My IPV4: " IPSTR "\n", IP2STR(&ipInfo.ip));
but now under esp-idf 5.4.1 i got error message:
error: passing argument 2 of 'esp_netif_get_ip_info ...
- Sat Jun 07, 2025 3:10 am
- Forum: Hardware
- Topic: esp32 wroom custom board & wifi
- Replies: 4
- Views: 186
Re: esp32 wroom custom board & wifi
Hi Microcontroller thanks for the reply. At first I thought it was a hardware or router problem. But I was able to debug the development board with the esp-prog and the code works great in the esp32 dev board. I have the latest esp-idf installed on linux ubuntu 64. I have the project in a different ...