"EXAMPLE CONIGURATION OPTION" not showing in menuconfig of ESP-IDF
"EXAMPLE CONIGURATION OPTION" not showing in menuconfig of ESP-IDF
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 (46.92 KiB) Viewed 5505 times
-
- Posts: 364
- Joined: Mon Jan 04, 2021 2:06 pm
Re: "EXAMPLE CONIGURATION OPTION" not showing in menuconfig of ESP-IDF
Hi,
Are you trying to use the ESP-IDF example? Can you give more details about it?
Are you trying to use the ESP-IDF example? Can you give more details about it?
Re: "EXAMPLE CONIGURATION OPTION" not showing in menuconfig of ESP-IDF
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
https://github.com/luxonis/esp32-spi-me ... aming_wifi
- Attachments
-
- dsdsd.PNG (35.12 KiB) Viewed 5476 times
Re: "EXAMPLE CONIGURATION OPTION" not showing in menuconfig of ESP-IDF
try to build the example project first and then open menuconfig again.
Best wishes
Ralph
Best wishes
Ralph
Re: "EXAMPLE CONIGURATION OPTION" not showing in menuconfig of ESP-IDF
Ralph build hello_world from examples folder. "idf.py menuconfig" again not showing "Example Configuration"... please help
- Attachments
-
- add.PNG (43.89 KiB) Viewed 5474 times
-
- Posts: 364
- Joined: Mon Jan 04, 2021 2:06 pm
Re: "EXAMPLE CONIGURATION OPTION" not showing in menuconfig of ESP-IDF
Have you tried to ask help on the GitHub repo? You can open an issue there directly.
Re: "EXAMPLE CONIGURATION OPTION" not showing in menuconfig of ESP-IDF
If you are trying to build "hello_world" example then you should read README from that example and not from some external repository.Wajeeha77 wrote: Ralph build hello_world from examples folder. "idf.py menuconfig" again not showing "Example Configuration"... please help
In "hello_world" example there is no wifi used, so you wont find menu to configure anything in menuconfig.
Re: "EXAMPLE CONIGURATION OPTION" not showing in menuconfig of ESP-IDF
Very good point, obviously you should work on a sample project using WiFichegewara wrote: ↑Mon Apr 11, 2022 9:27 amIf you are trying to build "hello_world" example then you should read README from that example and not from some external repository.Wajeeha77 wrote: Ralph build hello_world from examples folder. "idf.py menuconfig" again not showing "Example Configuration"... please help
In "hello_world" example there is no wifi used, so you wont find menu to configure anything in menuconfig.
Re: "EXAMPLE CONIGURATION OPTION" not showing in menuconfig of ESP-IDF
got it! thankyou so much!
Re: "EXAMPLE CONIGURATION OPTION" not showing in menuconfig of ESP-IDF
[1] Under the project directory create a file at "main/Kconfig.projbuild"
[2] Add the following to the Kconfig.projbuild file:
[3] idf.py menuconfig
[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
Who is online
Users browsing this forum: Majestic-12 [Bot] and 86 guests