Search found 2344 matches

by ESP_Angus
Mon Oct 28, 2019 11:12 pm
Forum: ESP-IDF
Topic: Image signing
Replies: 4
Views: 5997

Re: Image signing

Hi nick,

CMake is no longer a preview and this is supported on ESP-IDF v4.x.

However, I'm able to reproduce this problem. The verification key binary is being linked to the bootloader correctly but not the app. Will fix ASAP.


Angus
by ESP_Angus
Mon Oct 28, 2019 11:09 pm
Forum: ESP-IDF
Topic: Long delay after UART transmit
Replies: 5
Views: 5929

Re: Long delay after UART transmit

Hi JadElClemens, Thanks for the detailed description of what you're seeing. I have some additional questions to help figure out what's happening here: Which ESP-IDF version do you have? Do you have Wi-Fi or BT enabled at the same time? When you say you raised the priority "above all other tasks", ho...
by ESP_Angus
Mon Oct 28, 2019 10:55 pm
Forum: ESP-IDF
Topic: ESP_PLATFORM flag not set
Replies: 2
Views: 2920

Re: ESP_PLATFORM flag not set

Hi schnaaabeltier,

What ESP-IDF version do you have? This was a bug in v4.0-beta1, but it's been fixed and you can get the fix by checking out the latest release/v4.0 branch. There will be a v4.0-beta2 prerelease soon.

Angus
by ESP_Angus
Mon Oct 28, 2019 10:52 pm
Forum: General Discussion
Topic: Regular expression regex.h
Replies: 7
Views: 10698

Re: Regular expression regex.h

Hi zliudr, Unfortunately the newlib we provide with ESP-IDF was compiled without regular expression support. The header is still there as it's part of newlib, but the symbols aren't actually available to link against. We may be able to fix this in the future, if you have a GitHub account then you ca...
by ESP_Angus
Fri Oct 25, 2019 12:09 am
Forum: Hardware
Topic: boot loop and can't load
Replies: 2
Views: 10735

Re: boot loop and can't load

Hi Mokatronics, Your English is absolutely great, no need to apologise. Thanks for all the detail. The output from your "Arduino Nano" trace of the serial exchange shows that esptool is not able to reset the board properly into bootloader mode - it's booting into "normal" mode which has the incomple...
by ESP_Angus
Thu Oct 24, 2019 11:56 pm
Forum: ESP-IDF
Topic: flashing without the esptool.py
Replies: 5
Views: 4766

Re: flashing without the esptool.py

Hi dani619, There's no officially supported C tool for flashing an ESP32. There have been some community projects but I'm unsure of their status, you can search the forum to find some discussion about them. If you only need a way to run esptool without a separate Python environment installation, the...
by ESP_Angus
Thu Oct 24, 2019 1:45 am
Forum: Documentation
Topic: Problem with on-line documentation
Replies: 2
Views: 11306

Re: Problem with on-line documentation

Hi wevets, Thanks very much for letting us know about this problem. Do you have a link to a page where this happening? I tried the Sleep Modes page for the function mentioned in the post, but it's rendering OK for latest master branch and the v3.3 stable release: https://docs.espressif.com/projects/...
by ESP_Angus
Mon Oct 21, 2019 4:45 am
Forum: ESP-IDF
Topic: FatFs does not work on encrypted partition
Replies: 11
Views: 12472

Re: FatFs does not work on encrypted partition

Hi Mikhail,
Mikhail Khalizev wrote:
Mon Oct 21, 2019 12:47 am
How I see, fat still is not working on encrypted partition.
This should work now. If it's not working, can you please give some more details (ESP-IDF version, exact configuration & setup, behaviour you're seeing when trying to use the FAT partition.)
by ESP_Angus
Mon Oct 21, 2019 4:42 am
Forum: ESP-IDF
Topic: Can partitions table be replaced by application?
Replies: 3
Views: 3930

Re: Can partitions table be replaced by application?

Hi jsam589, WiFive is right. ESP-IDF doesn't support OTA updating of the partition table because a power failure or crash during the update could brick the device. If you're confident this won't happen then you can disable the config flag that the prevents SPI flash APIs from erasing or writing "sen...
by ESP_Angus
Thu Oct 17, 2019 3:07 am
Forum: General Discussion
Topic: 8MB psram question
Replies: 3
Views: 5600

Re: 8MB psram question

Hi glarty, This is a hardware limitation. You can't concurrently map more than 4MB of PSRAM memory into the address space of an ESP32 (this limit is raised in the forthcoming ESP32-S2 Beta). Working around this limitation is why the Himem API that you mentioned was created: https://docs.espressif.co...