Search found 4 matches
- Mon Apr 22, 2024 4:54 am
- Forum: General Discussion
- Topic: Getting my ESP32-C3 Production Ready
- Replies: 0
- Views: 589
Getting my ESP32-C3 Production Ready
Hi, We are going for factory proudction of our embedded-device which is using ESP32-C3 As this is my first public/user targeted device in production, I want to know if there is a checklist of secure measures need to be address ed I have come accross Flash Encryption, Secure Boot. I want to know if t...
- Tue Apr 16, 2024 4:46 am
- Forum: General Discussion
- Topic: Running idf.py size-components while using idf_as_lib
- Replies: 3
- Views: 904
Re: Running idf.py size-components while using idf_as_lib
Thanks ESP_Roland
This solved my issue
This solved my issue
- Fri Apr 12, 2024 3:39 pm
- Forum: General Discussion
- Topic: Running idf.py size-components while using idf_as_lib
- Replies: 3
- Views: 904
Re: Running idf.py size-components while using idf_as_lib
I was able to generate a map file with following additions set(idf_size ${python} -m esp_idf_size) set(mapfile "${CMAKE_BINARY_DIR}/${CMAKE_PROJECT_NAME}.map") target_link_options(${elf_file} PRIVATE "-Wl,--Map=${mapfile}") and enable size-components command by add_custom_target(size-components COMM...
- Fri Apr 12, 2024 2:30 pm
- Forum: General Discussion
- Topic: Running idf.py size-components while using idf_as_lib
- Replies: 3
- Views: 904
Running idf.py size-components while using idf_as_lib
Hi I'm using the example code provided here (https://github.com/espressif/esp-idf/tree/v5.2.1/examples/build_system/cmake/idf_as_lib) to build my application. After building I want to run idf.py size , idf.py size-components. Both of them return error. udayms@pc:~/esp/esp-idf-v5.1.1/examples/build_s...