Search found 10 matches
- Wed Apr 14, 2021 3:45 pm
- Forum: ESP-IDF
- Topic: Broadcasting data via classic bluetooth
- Replies: 2
- Views: 2667
Re: Broadcasting data via classic bluetooth
Thanks for the answer to @ESP_Sprite! We wrote a letter to the email you provided
- Tue Apr 13, 2021 12:46 pm
- Forum: ESP-IDF
- Topic: Broadcasting data via classic bluetooth
- Replies: 2
- Views: 2667
Broadcasting data via classic bluetooth
We have to conduct certification tests for the device under development. To do this, we need to transmit some data continuously (just dummy garbage) through the Сlassic Bluetooth at the maximum transmitter power. The problem is that in the laboratory there is no way to recreate a real connection to ...
- Wed Mar 17, 2021 2:48 pm
- Forum: Hardware
- Topic: Burning Fuses BLOCK3 via JTAG
- Replies: 5
- Views: 6269
Re: Burning Fuses BLOCK3 via JTAG
I don't think we have any easy-to-use support for burning fuses in OpenOCD. (Checking with a colleague, will come back to this if I'm wrong.) You can technically still manually burn the fuses by directly writing the eFuse registers in OpenOCD or GDB, but that's a bit fiddly. Thanks for your reply, ...
- Wed Mar 10, 2021 3:34 pm
- Forum: Hardware
- Topic: Burning Fuses BLOCK3 via JTAG
- Replies: 5
- Views: 6269
Re: Burning Fuses BLOCK3 via JTAG
Thank you for responding!Michalpu wrote: ↑Wed Mar 10, 2021 12:21 pmHere is simmiliar topic of that matter https://www.esp32.com/viewtopic.php?t=17006
But in that topic author used espefuse utility, which works via UART
Dear forum moderators (espressif official), please answer my question
Thanks in advance!
Oleg
- Tue Mar 09, 2021 7:10 pm
- Forum: Hardware
- Topic: Burning Fuses BLOCK3 via JTAG
- Replies: 5
- Views: 6269
- Fri Mar 05, 2021 3:07 pm
- Forum: Hardware
- Topic: Burning Fuses BLOCK3 via JTAG
- Replies: 5
- Views: 6269
Burning Fuses BLOCK3 via JTAG
Hi all!
Is it any possibility/mechanism to burn ESP32 EFUSE_BLK3 using OpenOCD+JTAG?
Thanks in advance!
Oleg
Is it any possibility/mechanism to burn ESP32 EFUSE_BLK3 using OpenOCD+JTAG?
Thanks in advance!
Oleg
- Tue Oct 27, 2020 1:51 pm
- Forum: ESP-IDF
- Topic: Unwanted messages when initializing Wifi
- Replies: 2
- Views: 3325
- Fri Oct 23, 2020 1:33 pm
- Forum: ESP-IDF
- Topic: Undefined reference to f_gets/f_puts error
- Replies: 3
- Views: 5857
Re: Undefined reference to f_gets/f_puts error
Now it's clear! Thank you, ESP_Igrr!!
- Fri Oct 23, 2020 1:13 pm
- Forum: ESP-IDF
- Topic: Unwanted messages when initializing Wifi
- Replies: 2
- Views: 3325
Unwanted messages when initializing Wifi
Hi all! We use ESP32 and ESP-IDV v4.0 in our project. During WiFI initialization, unwanted messages are printed in UART0: I (15227) wifi:wifi driver task: 3ffe7c0c, prio:23, stack:6656, core=1 I (15241) wifi:wifi firmware version: aa5336b I (15241) wifi:config NVS flash: enabled I (15241) wifi:confi...
- Mon Aug 31, 2020 11:19 am
- Forum: ESP-IDF
- Topic: Undefined reference to f_gets/f_puts error
- Replies: 3
- Views: 5857
Undefined reference to f_gets/f_puts error
Hi to All! I have an ESP-IDF project contained f_open(..) and f_puts(..)/f_gets(..). Here is the part of my code: if(f_open(&fil, u8GlobalNameOfFileName, FA_READ) == FR_OK) { f_gets(fileText, sizeof(FirstTextInCsv), &fil); if(strcmp(fileText,FirstTextInCsv) == false) { PRINTF("The flash was populate...