Search found 2344 matches

by ESP_Angus
Tue Jun 18, 2019 3:56 am
Forum: ESP-IDF
Topic: esptool write_flash with encrypt option
Replies: 6
Views: 6450

Re: esptool write_flash with encrypt option

1. It's not clear to me how to take advantage of the "less secure" options. Is there documentation on how I would use those to go beyond the 4 flash limit? What would the process look like? Unless you really want to dig into the semi-documented details, it's probably easiest to wait for the new "de...
by ESP_Angus
Tue Jun 18, 2019 3:50 am
Forum: ESP-IDF
Topic: Updating to stay as close as possible to release/v3.3
Replies: 2
Views: 2896

Re: Updating to stay as close as possible to release/v3.3

Hi jcsbanks, In additional to what Sprite says, note that after the v3.3 final release we will continue to backport bug fixes to this branch and then later tag v3.3.1, v3.3.2, etc after we finish QA testing based on a particular commit from the branch. So you may want to keep an eye out for the v3.3...
by ESP_Angus
Mon Jun 17, 2019 1:50 am
Forum: ESP-IDF
Topic: Reflashable Secure boot issue
Replies: 4
Views: 4142

Re: Reflashable Secure boot issue

Hi raul, As WiFive suggests, probably the bootloader has gotten bigger and either the partition table needs to be moved to a higher offset, the or bootloader logging verbosity reduced to shrink the binary. Regarding the putty error, possibly the baud rate is wrong (should 115200bps). The second scre...
by ESP_Angus
Mon Jun 17, 2019 1:41 am
Forum: ESP-IDF
Topic: esptool write_flash with encrypt option
Replies: 6
Views: 6450

Re: esptool write_flash with encrypt option

We've merged the support for this option in esptool v2.7-dev, but we haven't merged the support for this into ESP-IDF yet so there's no documentation or easy config option for it. That support is being reviewed now and will be part of ESP-IDF V4.0, where we plan to change the suggested flash encrypt...
by ESP_Angus
Fri Jun 14, 2019 12:06 am
Forum: ESP-IDF
Topic: vTaskDelete sometimes hangs current task
Replies: 10
Views: 12902

Re: vTaskDelete sometimes hangs current task

Hi maldus, Sorry, this is too much code for us to try and use it to debug an OS-level bug. If you have a simple example (maybe by deleting code from this example until it's only a few short source files), then we can happily look at it. But maybe someone else from the forum can help. I did notice on...
by ESP_Angus
Thu Jun 06, 2019 5:09 am
Forum: ESP-IDF
Topic: ESP-IDF v3.0.8 has been released
Replies: 0
Views: 1552

ESP-IDF v3.0.8 has been released

Documentation for release v3.0.8 is available at https://docs.espressif.com/projects/esp-idf/en/v3.0.8/ ESP-IDF v3.0.8 is a bugfix-only update for ESP-IDF v3.0.7. Release v3.0.8 is compatible with apps written for ESP-IDF v3.0.x. The latest stable version of ESP-IDF is v3.2 . A full list of bug fixe...
by ESP_Angus
Wed Jun 05, 2019 2:49 am
Forum: ESP-IDF
Topic: [Answered] How to build a subset of the possible components in ESP-IDF?
Replies: 24
Views: 38938

Re: [Answered] How to build a subset of the possible components in ESP-IDF?

Are we going to support for LTO in few months time. GCC compiler supports it on other platforms. I am hoping it will reduce bin size by at least half. Hi Matej, We don't have any update about LTO, but it will not be supported in the near future. We've done some experiments, but ESP-IDF relies heavi...
by ESP_Angus
Wed Jun 05, 2019 1:35 am
Forum: ESP-IDF
Topic: vTaskDelete sometimes hangs current task
Replies: 10
Views: 12902

Re: vTaskDelete sometimes hangs current task

Is it possible the task handle is corrupted and it doesn't point to a valid task at all? This could result in the behaviour you describe. Are you certain that the main task is blocking in vTaskDelete() and not in some nearby function, for example if a task is deleted while holding the semaphore that...
by ESP_Angus
Mon Jun 03, 2019 3:43 am
Forum: Hardware
Topic: I cannot write to register associated with HSPI
Replies: 6
Views: 6606

Re: I cannot write to register associated with HSPI

You have to clear the reset bit for the peripheral as well as set the clk_en bit.

Is there a reason why you need to write the registers directly, rather than calling periph_module_enable(PERIPH_HSPI_MODULE); ?

If it's still not working, can you please post the code that you're using?
by ESP_Angus
Fri May 31, 2019 12:27 am
Forum: ESP-IDF
Topic: Flash encryption without secure boot
Replies: 9
Views: 10704

Re: Flash encryption without secure boot

Hi user4, 1. Is it then impossible to disable flash encryption per the steps at https://docs.espressif.com/projects/esp-idf/en/latest/security/flash-encryption.html#disabling-flash-encryption ? Yes, if FLASH_CRYPT_CNT is write protected then this is impossible. 2. Will I still have three more serial...