Search found 6 matches
- Mon Sep 09, 2019 9:07 am
- Forum: ESP-IDF
- Topic: Application hangs during boot in function esp_intr_alloc_intrstatus
- Replies: 0
- Views: 2273
Application hangs during boot in function esp_intr_alloc_intrstatus
Hello, I have a weird random bug with my ESP32. Some time (this time after flashing, but I think it also happens on normal reboots), the ESP32 will just perform the first steps of the boot and hang and never go any further. This isn't an UART configuration problem since all messages that I get are t...
- Fri May 31, 2019 4:41 pm
- Forum: ESP-IDF
- Topic: ESP32 NVS Data to be programmed at factory
- Replies: 3
- Views: 6338
Re: ESP32 NVS Data to be programmed at factory
You will need a little bit more than esptool for that. You can use the utility mentioned by Zeni241 or make your own. The tool to generate NVS partitions from their CSV definition is nvs_partition_gen.py located in esp-idf/components/nvs_flash/nvs_partition_generator/ . So you basically have two cho...
- Fri May 31, 2019 4:31 pm
- Forum: ESP-IDF
- Topic: Test partition supported or not ?
- Replies: 2
- Views: 4109
Re: Test partition supported or not ?
Okay thanks for the quick reply, that's what I thought
- Wed May 29, 2019 4:02 pm
- Forum: ESP-IDF
- Topic: Test partition supported or not ?
- Replies: 2
- Views: 4109
Test partition supported or not ?
Hello, Reading the docs concerning the partitions for the ESP32 https://docs.espressif.com/projects/esp-idf/en/v3.1.2/api-guides/partition-tables.html , I read the following test (0x2) is a reserved subtype for factory test procedures. It is not currently supported by the esp-idf bootloader. . So I ...
- Wed May 29, 2019 10:10 am
- Forum: General Discussion
- Topic: Ways to make binary smaller?
- Replies: 19
- Views: 34759
Re: Ways to make binary smaller?
So I found myself playing with the configuration of mbedTLS also, and here are the results (the change of configurations are made one of the top of the previous) : Archive File DRAM .data & .bss IRAM Flash code & rodata Total libmbedtls.a 92 264 0 94799 18102 113257 (base version) libmbedtls.a 92 26...
- Wed May 29, 2019 9:13 am
- Forum: General Discussion
- Topic: Ways to make binary smaller?
- Replies: 19
- Views: 34759
Re: Ways to make binary smaller?
Hello all, Since this post is the top Google result for "reduce binary size esp32", I think it's worth adding a simple configuration change that can greatly reduce your code size. This configuration is in the sdkconfig in "Component config -> ESP32 specific " and the title is "Enable 'nano' formatti...