Search found 200 matches

by liaifat85
Wed May 01, 2024 5:34 pm
Forum: ESP-IDF
Topic: idf docker git error
Replies: 2
Views: 665

Re: idf docker git error

Verify the user permissions within the Docker container. If you're running commands as a non-root user, ensure that the user has sufficient permissions to execute Git commands and perform file operations.
by liaifat85
Wed May 01, 2024 5:19 pm
Forum: General Discussion
Topic: Battery power 2 esp32
Replies: 5
Views: 824

Re: Battery power 2 esp32

Which step up converter are you using?
by liaifat85
Mon Apr 29, 2024 2:36 pm
Forum: ESP-IDF
Topic: Guru Meditation Error when using ESP32 bluetooth
Replies: 1
Views: 294

Re: Guru Meditation Error when using ESP32 bluetooth

Use debugging tools like GDB to analyze the memory state at the time of the error. You can inspect the values of pointers, memory contents, and stack traces to identify any potential memory corruption issues.
by liaifat85
Mon Apr 29, 2024 2:23 pm
Forum: ESP-IDF
Topic: Profiling on Espressif MCUs woes
Replies: 3
Views: 539

Re: Profiling on Espressif MCUs woes

While SystemView provides detailed insights into your system's behavior, it might not be the ideal tool for identifying and optimizing hot paths in your code. It's more focused on system-level tracing rather than profiling specific code paths.
by liaifat85
Mon Apr 29, 2024 2:09 pm
Forum: Hardware
Topic: esp32-s3 Flash Encryption for Production
Replies: 3
Views: 643

Re: esp32-s3 Flash Encryption for Production

With flash encryption and secure boot enabled, the USB port can indeed be restricted for communication purposes, as it's often used for firmware updates and debugging. However, this restriction typically applies to unauthorized access during runtime.You can still use the USB port for firmware update...
by liaifat85
Mon Apr 29, 2024 1:53 pm
Forum: General Discussion
Topic: Not able to perform OTA using ESP32 with AWS S3
Replies: 10
Views: 1905

Re: Not able to perform OTA using ESP32 with AWS S3

Did you ever try to modify your code like this? esp_http_client_config_t config = { .url = CONFIG_EXAMPLE_FIRMWARE_UPGRADE_URL, .cert_pem = "/path/to/s3_certificate.pem", // Path to the PEM certificate file .timeout_ms = CONFIG_EXAMPLE_OTA_RECV_TIMEOUT, .keep_alive_enable = true, }; // Ensure server...
by liaifat85
Sun Apr 28, 2024 2:53 pm
Forum: Showcase
Topic: ESP32-S3 Thermal Image Board
Replies: 1
Views: 840

Re: ESP32-S3 Thermal Image Board

Thanks a lot for making such a project open-source.
by liaifat85
Sun Apr 28, 2024 2:50 pm
Forum: 全国大学生物联网设计竞赛乐鑫答疑专区
Topic: 申请开发板
Replies: 2
Views: 1094

Re: 申请开发板

我认为对于产品购买,您需要联系客户支持团队。
https://www.espressif.com/en/contact-us/sales-questions
by liaifat85
Sun Apr 28, 2024 2:42 pm
Forum: 硬件问题讨论
Topic: esp32s3的启动时间远大于esp32,可能是硬件设计问题吗?
Replies: 2
Views: 50742

Re: esp32s3的启动时间远大于esp32,可能是硬件设计问题吗?

检查你的硬件设计,确保与ESP32相比没有明显的设计缺陷,比如电源管理、时钟电路等方面。