"EXAMPLE CONIGURATION OPTION" not showing in menuconfig of ESP-IDF

Wajeeha77
Posts: 6
Joined: Tue Mar 29, 2022 9:15 am

"EXAMPLE CONIGURATION OPTION" not showing in menuconfig of ESP-IDF

Postby Wajeeha77 » Mon Apr 11, 2022 7:32 am

please help !!! I need to set WIFI SSID AND PASSWORD FOR ESP32 to get frames over the wifi but the option of 'EXAMPLE CONFIGURATION' is not appearing in menuconfig of ESP-IDF...
Attachments
unknown.png
unknown.png (46.92 KiB) Viewed 5511 times

ESP_Minatel
Posts: 364
Joined: Mon Jan 04, 2021 2:06 pm

Re: "EXAMPLE CONIGURATION OPTION" not showing in menuconfig of ESP-IDF

Postby ESP_Minatel » Mon Apr 11, 2022 7:59 am

Hi,

Are you trying to use the ESP-IDF example? Can you give more details about it?

Wajeeha77
Posts: 6
Joined: Tue Mar 29, 2022 9:15 am

Re: "EXAMPLE CONIGURATION OPTION" not showing in menuconfig of ESP-IDF

Postby Wajeeha77 » Mon Apr 11, 2022 8:08 am

I am using the code in this repo, following readme to acquire camera frames over the WIFI
https://github.com/luxonis/esp32-spi-me ... aming_wifi
Attachments
dsdsd.PNG
dsdsd.PNG (35.12 KiB) Viewed 5482 times

RalphD
Posts: 103
Joined: Thu Nov 25, 2021 9:02 pm

Re: "EXAMPLE CONIGURATION OPTION" not showing in menuconfig of ESP-IDF

Postby RalphD » Mon Apr 11, 2022 8:28 am

try to build the example project first and then open menuconfig again.

Best wishes
Ralph

Wajeeha77
Posts: 6
Joined: Tue Mar 29, 2022 9:15 am

Re: "EXAMPLE CONIGURATION OPTION" not showing in menuconfig of ESP-IDF

Postby Wajeeha77 » Mon Apr 11, 2022 9:08 am

Ralph build hello_world from examples folder. "idf.py menuconfig" again not showing "Example Configuration"... :( please help
Attachments
add.PNG
add.PNG (43.89 KiB) Viewed 5480 times

ESP_Minatel
Posts: 364
Joined: Mon Jan 04, 2021 2:06 pm

Re: "EXAMPLE CONIGURATION OPTION" not showing in menuconfig of ESP-IDF

Postby ESP_Minatel » Mon Apr 11, 2022 9:22 am

Have you tried to ask help on the GitHub repo? You can open an issue there directly.

chegewara
Posts: 2362
Joined: Wed Jun 14, 2017 9:00 pm

Re: "EXAMPLE CONIGURATION OPTION" not showing in menuconfig of ESP-IDF

Postby chegewara » Mon Apr 11, 2022 9:27 am

Wajeeha77 wrote: Ralph build hello_world from examples folder. "idf.py menuconfig" again not showing "Example Configuration"... :( please help
If you are trying to build "hello_world" example then you should read README from that example and not from some external repository.
In "hello_world" example there is no wifi used, so you wont find menu to configure anything in menuconfig.

RalphD
Posts: 103
Joined: Thu Nov 25, 2021 9:02 pm

Re: "EXAMPLE CONIGURATION OPTION" not showing in menuconfig of ESP-IDF

Postby RalphD » Mon Apr 11, 2022 12:57 pm

chegewara wrote:
Mon Apr 11, 2022 9:27 am
Wajeeha77 wrote: Ralph build hello_world from examples folder. "idf.py menuconfig" again not showing "Example Configuration"... :( please help
If you are trying to build "hello_world" example then you should read README from that example and not from some external repository.
In "hello_world" example there is no wifi used, so you wont find menu to configure anything in menuconfig.
Very good point, obviously you should work on a sample project using WiFi :lol:

Wajeeha77
Posts: 6
Joined: Tue Mar 29, 2022 9:15 am

Re: "EXAMPLE CONIGURATION OPTION" not showing in menuconfig of ESP-IDF

Postby Wajeeha77 » Mon Apr 11, 2022 8:00 pm

got it! thankyou so much!

siva4esp
Posts: 1
Joined: Thu Feb 17, 2022 12:41 am

Re: "EXAMPLE CONIGURATION OPTION" not showing in menuconfig of ESP-IDF

Postby siva4esp » Fri Aug 18, 2023 4:38 am

[1] Under the project directory create a file at "main/Kconfig.projbuild"

[2] Add the following to the Kconfig.projbuild file:

Code: Select all

menu "Example Configuration"

    orsource "$IDF_PATH/examples/common_components/env_caps/$IDF_TARGET/Kconfig.env_caps"

    config I2C_MASTER_SCL
        int "SCL GPIO Num"
        range ENV_GPIO_RANGE_MIN ENV_GPIO_OUT_RANGE_MAX
        default 19 if IDF_TARGET_ESP32 || IDF_TARGET_ESP32S2 || IDF_TARGET_ESP32S3
        default 0
        help
            GPIO number for I2C Master clock line.

    config I2C_MASTER_SDA
        int "SDA GPIO Num"
        range ENV_GPIO_RANGE_MIN ENV_GPIO_OUT_RANGE_MAX
        default 18 if IDF_TARGET_ESP32 || IDF_TARGET_ESP32S2 || IDF_TARGET_ESP32S3
        default 1
        help
            GPIO number for I2C Master data line.

endmenu
[3] idf.py menuconfig

Who is online

Users browsing this forum: Google [Bot] and 77 guests