Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support IDF v5.0 #152

Open
lida2003 opened this issue Dec 21, 2022 · 3 comments
Open

Support IDF v5.0 #152

lida2003 opened this issue Dec 21, 2022 · 3 comments

Comments

@lida2003
Copy link

lida2003 commented Dec 21, 2022

Is your feature request related to a problem? Please describe.
Support IDF v5.0

Describe the solution you'd like
Support IDF release/v5.0

commit 7f4bcc36959b1c483897d643036f847eb08d270e (HEAD -> release/v5.0, origin/release/v5.0)
Merge: 3f2f35bd5e f8d4bc8911
Author: Michael (XIAO Xufeng) <[email protected]>
Date:   Sat Nov 12 00:28:57 2022 +0800

    Merge branch 'bugfix/revision_format_v5.0' into 'release/v5.0'

    soc: upgrade version printing to vX.Y (v5.0)

    See merge request espressif/esp-idf!21011

commit ab6ac9a5e90830674f6300a4327ef541246f2048 (HEAD -> master, origin/master, origin/HEAD)
Merge: 75c9253 3f27d01
Author: tonyp7 <[email protected]>
Date:   Tue Oct 20 08:36:52 2020 +0800

    Merge pull request #113 from lukecyca/svg-icons

    Convert icons to SVG

Describe alternatives you've considered
TBD

Additional context

esp32-wifi-manager/examples/default_demo$ idf.py build
Executing action: all (aliases: build)
Running cmake in directory /home/daniel/Work/esp32-wifi-manager/examples/default_demo/build
Executing "cmake -G Ninja -DPYTHON_DEPS_CHECKED=1 -DESP_PLATFORM=1 -DCCACHE_ENABLE=0 /home/daniel/Work/esp32-wifi-manager/examples/default_demo"...
-- IDF_TARGET not set, using default target: esp32
-- Found Git: /usr/bin/git (found version "2.25.1")
-- The C compiler identification is GNU 11.2.0
-- The CXX compiler identification is GNU 11.2.0
-- The ASM compiler identification is GNU
-- Found assembler: /home/daniel/.espressif/tools/xtensa-esp32-elf/esp-2022r1-11.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc
-- Check for working C compiler: /home/daniel/.espressif/tools/xtensa-esp32-elf/esp-2022r1-11.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc
-- Check for working C compiler: /home/daniel/.espressif/tools/xtensa-esp32-elf/esp-2022r1-11.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -- works
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
-- Detecting C compile features
-- Detecting C compile features - done
-- Check for working CXX compiler: /home/daniel/.espressif/tools/xtensa-esp32-elf/esp-2022r1-11.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-g++
-- Check for working CXX compiler: /home/daniel/.espressif/tools/xtensa-esp32-elf/esp-2022r1-11.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-g++ -- works
-- Detecting CXX compiler ABI info
-- Detecting CXX compiler ABI info - done
-- Detecting CXX compile features
-- Detecting CXX compile features - done
-- Building ESP-IDF components for target esp32
CMake Error at /home/daniel/Work/esp-idf-v5.0/tools/cmake/build.cmake:245 (message):
  Failed to resolve component 'mdns'.
Call Stack (most recent call first):
  /home/daniel/Work/esp-idf-v5.0/tools/cmake/build.cmake:281 (__build_resolve_and_add_req)
  /home/daniel/Work/esp-idf-v5.0/tools/cmake/build.cmake:574 (__build_expand_requirements)
  /home/daniel/Work/esp-idf-v5.0/tools/cmake/project.cmake:440 (idf_build_process)
  CMakeLists.txt:6 (project)


-- Configuring incomplete, errors occurred!
See also "/home/daniel/Work/esp32-wifi-manager/examples/default_demo/build/CMakeFiles/CMakeOutput.log".
HINT: The component mdns has been moved to the IDF component manager or has been removed and refactored into some other component.
Please look out for component in 'https://components.espressif.com' and add using 'idf.py add-dependency' command.
Refer to the migration guide for more details.
cmake failed with exit code 1, output of the command is in the /home/daniel/Work/esp32-wifi-manager/examples/default_demo/build/log/idf_py_stderr_output_10789 and /home/daniel/Work/esp32-wifi-manager/examples/default_demo/build/log/idf_py_stdout_output_10789

@huardti
Copy link

huardti commented Feb 20, 2023

the PR #153 can be use to fixe that !

@CJCombrink
Copy link

CJCombrink commented Jul 29, 2023

I can confirm, pr #153 solves the issue for IDF v5.1
I don't see the issue as commented on the pr, it just works

@jeranio
Copy link

jeranio commented May 17, 2024

I managed to get this built/compiled on ESP-IDF v5.4-dev-78-gd4cd437ede and running with these 4 mods. This is for the beginner learners like myself.

  1. Added "esp_wifi" to wifi-manager CMakeLists.txt
    REQUIRES log nvs_flash mdns wpa_supplicant lwip esp_http_server esp_wifi

  2. Changed the default_demo CMakeLists.txt to:

 idf_component_register(SRCS "user_main.c"
                       INCLUDE_DIRS "."
                       REQUIRES esp_wifi esp32-wifi-manager

This gets rid of the #include not found errors

  1. At the default_demo root in the terminal:
    idf.py add-dependency mdns
    The above command created a 'idf_component.yml' in the default_demo root diectory.
    This gets rid of the Failed to resolve component 'mdns'.

  2. I changed this line of code in the user_main.c
    ESP_LOGI(TAG, "free heap: %lu", esp_get_free_heap_size());

Output from idf.py monitor

I (1037) wifi_manager: MESSAGE: ORDER_LOAD_AND_RESTORE_STA
I (1037) wifi_manager: No saved wifi found on startup. Starting access point.
I (1047) wifi_manager: MESSAGE: ORDER_START_AP
I (1057) esp_netif_lwip: DHCP server started on interface WIFI_AP_DEF with IP: 10.10.0.1

All these solutions were derived from the useful comments above. Thanks.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

4 participants