Closed mzakharocsc closed 1 month ago
Did you read and do this?
Yes, my list of components is the following:
set(RUST_DEPS "pthread" "driver" "vfs" "esp_http_client" "esp_http_server" "espcoredump" "nvs_flash" "spi_flash" "mqtt")
with app_update
did not even compile, but thats a story for another issue.
Did you read and do this?
Yes, my list of components is the following:
set(RUST_DEPS "pthread" "driver" "vfs" "esp_http_client" "esp_http_server" "espcoredump" "nvs_flash" "spi_flash" "mqtt")
with
app_update
did not even compile, but thats a story for another issue.
Have you tried putting esp_wifi
in that list?
Thank you for your help. The following list of dependencies was needed to get basic wifi example working:
"esp_wifi" "esp_event" "wpa_supplicant" "esp_netif" "lwip"
As for app_update
, bootloader_support
was needed as well.
Yes. These components weren't necessary in the 4.4. days, probably because they were enabled by the others. With esp idf 5 the situation might had changed, but the approach remains the same.
Hello, I am using esp32c6 with IDF 5.2.2. I followed the following cmake build tutorial : https://github.com/esp-rs/esp-idf-template/blob/master/README-cmake.md
However, I cannot access wifi libraries. I get the following compile error:
I saw soluiton in https://github.com/esp-rs/esp-idf-svc/issues/307 but it does not seem to apply to cmake based projects. Any help would be kindly appreciated.