Search found 28 matches

by ESP_michael
Wed Nov 10, 2021 4:12 am
Forum: ESP-IDF 中文讨论版
Topic: ESP32S3无法启动 D (188) bootloader_flash:
Replies: 2
Views: 1526

Re: ESP32S3无法启动 D (188) bootloader_flash:

Hi metoo0713,

我有几个问题:
1. 无法执行的情况,在整板掉电复位之后是否能恢复?
2. 无法执行的情况,能否给我们提供一下flash status的数值:调用 `esptool.py read_flash_status`
3. (先做完以上两步) 如果重新烧写整个固件,问题是否会消失?
4. 问题是否和开发板/模组强相关,也就是说,如果执行了(2)的步骤,出现过问题的板子是否还会再出现同样的问题?

谢谢!
Michael
by ESP_michael
Mon Sep 06, 2021 4:06 am
Forum: ESP-IDF
Topic: [Resolved] Writing to flash is faster when flash encryption is enabled??
Replies: 9
Views: 5835

Re: Writing to flash is faster when flash encryption is enabled??

Issue closed. Please feel free to reopen it if the issue still exist.
by ESP_michael
Fri May 07, 2021 7:59 am
Forum: ESP-IDF 中文讨论版
Topic: 请代码维护者改正 USB 代码错误,从4.2到4.4都没改过来 [IDFGH-5223]
Replies: 3
Views: 2180

Re: 请代码维护者改正 USB 代码错误,从4.2到4.4都没改过来

abcrazy2020 :

感谢你的反馈~两处看起来应该都是有问题的,不过都不影响使用,我们会尽快更正。

Michael
by ESP_michael
Fri Feb 05, 2021 12:23 pm
Forum: ESP-IDF
Topic: [Resolved] Writing to flash is faster when flash encryption is enabled??
Replies: 9
Views: 5835

Re: Writing to flash is faster when flash encryption is enabled??

Hi GerryTitan, Sorry for missing this. I think we have fixed this issue here: https://github.com/espressif/esp-idf/commit/fd3e28ef0de6196244e7799cffff0d6bf9ea93ec. Could you please take a look to see whether it's fixed? There are also fixes for 4.0 and 4.1 on their latest commit Michael Here is the ...
by ESP_michael
Tue Aug 18, 2020 9:35 am
Forum: ESP-IDF 中文讨论版
Topic: 外部flash与spi外设冲突
Replies: 1
Views: 3350

Re: 外部flash与spi外设冲突

Hi Omega_fish, 我们在IDF 4.2引入了SPI总线锁(https://github.com/espressif/esp-idf/commit/49a48644e42458366b2dd7b7d153acc943d50e0f),用以仲裁多个SPI设备对总线的并发访问。在此之前,并没有很好的办法防止二者互相冲突。 如果你可以仅在一个task中使用,你可以试试LCD仅使用polling mode,以避免ISR对总线的随机访问。这样两个驱动同时只会有一个访问外设,应该可以避免冲突。*另外一种方式是使用互斥锁(Mutex)避免两个驱动同时访问总线* 同时注释掉这行代码(https://g...
by ESP_michael
Mon Jun 08, 2020 8:54 am
Forum: ESP-IDF
Topic: ESP32-S2 vs ESP32 inconsistent SPI results [IDFGH-3390]
Replies: 8
Views: 5718

Re: ESP32-S2 vs ESP32 inconsistent SPI results [IDFGH-3390]

Hi aleix, Another idea, could you try increase `cs_ena_pretrans` and `cs_ena_posttrans` to about 10. See: https://docs.espressif.com/projects/esp-idf/en/latest/esp32/api-reference/peripherals/spi_master.html#_CPPv4N29spi_device_interface_config_t15cs_ena_pretransE. Also, I'm not sure if your slave a...
by ESP_michael
Tue Jun 02, 2020 6:59 am
Forum: ESP-IDF
Topic: ESP32-S2 vs ESP32 inconsistent SPI results [IDFGH-3390]
Replies: 8
Views: 5718

Re: ESP32-S2 vs ESP32 inconsistent SPI results [IDFGH-3390]

Hi Aleix, I found two more possible issues: 1. The `input_delay_ns` in your device config is 100ns, but that value seems to be 12ns according to its spec. Could you please try setting that value to 0, 10, 12(recomendded), 20 and see what happen? 2. According to the LA waveform, the slave seems to be...
by ESP_michael
Fri May 29, 2020 8:24 am
Forum: ESP-IDF
Topic: Device bricked on OTA update when esp-idf is updated from v3.1 to v4.0 [IDFGH-3384]
Replies: 7
Views: 4552

Re: Device bricked on OTA update when esp-idf is updated from v3.1 to v4.0 [IDFGH-3384]

Thanks amruta,

The result is correct, this is an XMC chip.

Thanks for your information, though I haven't got a clue...
by ESP_michael
Fri May 29, 2020 5:31 am
Forum: ESP-IDF
Topic: ESP32-S2 vs ESP32 inconsistent SPI results [IDFGH-3390]
Replies: 8
Views: 5718

Re: ESP32-S2 vs ESP32 inconsistent SPI results

Hi aleix, Seen from your data on ESP32 and ESP32-S2, it looks very like there is one bit shift in the bitstream when reading by ESP32-S2. This may be the mismatch between the SPI mode of DM1000 and ESP32-S2. When the SPI mode of ESP32-S2 is incorrectly set, it will fetch the data just during the tra...
by ESP_michael
Thu May 28, 2020 10:38 am
Forum: ESP-IDF
Topic: Device bricked on OTA update when esp-idf is updated from v3.1 to v4.0 [IDFGH-3384]
Replies: 7
Views: 4552

Re: Device bricked on OTA update when esp-idf is updated from v3.1 to v4.0 [IDFGH-3384]

Hi @amruta, It's very helpful to know the model of your dev board! But unluckily I don't have that dev board in hand, so I can't debug easily. I'm guessing it's related to the flash in the module, could you please help to run `esptool.py flash_id` to get the flash ID of the module, and post it here?...

Go to advanced search