Search found 3 matches

by Dharanesh
Wed Aug 28, 2024 7:38 am
Forum: ESP-IDF
Topic: Cannot process component requirements. Multiple candidates to satisfy project requirements
Replies: 0
Views: 591

Cannot process component requirements. Multiple candidates to satisfy project requirements

"$ENV{IDF_PATH}/components/esp-homekit-sdk/components/homekit" am alredy using the apple home kit in my ESP-IDF project now i want to add the "${ESP_MATTER_PATH}/components" "${ESP_MATTER_PATH}/examples/common" "${MATTER_SDK_PATH}/config/esp32/components" ${extra_components_dirs_append} matter prot...
by Dharanesh
Fri Apr 12, 2024 3:34 am
Forum: General Discussion
Topic: Download from S3 bucket
Replies: 3
Views: 578

Re: Download from S3 bucket

int buffer_size = snprintf(NULL, 0, "%d", content_length); Can you explain this line? While the buffer's argument is char in esp_http_client_read(esp_http_client_handle_t client, char *buffer, int len), the content_length is assigned to the buffer with that size since esp_http_client_get_content_le...
by Dharanesh
Thu Apr 11, 2024 10:26 am
Forum: General Discussion
Topic: Download from S3 bucket
Replies: 3
Views: 578

Download from S3 bucket

I've already written the esp self OTA code, and it functions well. I now have to read and download a different file from Amazon S3 in order to flash it onto an AVR MCU that is attached to a UART. The locations of both firmwares are the same. I am able to make the connection. I can't read this, howev...