Search found 257 matches

by ESP_Roland
Mon Apr 20, 2020 5:29 am
Forum: ESP32 Arduino
Topic: WROVER Dev Kit 4.1 LCD and SD Not Working
Replies: 14
Views: 23675

Re: WROVER Dev Kit 4.1 LCD and SD Not Working

I have the same board but I cannot reproduce the issue. Can you please try the following example if it is not the "SDcardtest" example you are mentioning?

https://github.com/espressif/esp-idf/tr ... ge/sd_card

What IDF version are you using?
by ESP_Roland
Fri Apr 17, 2020 11:10 am
Forum: ESP-IDF
Topic: idf.py menuconfig fail
Replies: 5
Views: 7883

Re: idf.py menuconfig fail

If you switch Python and run install.sh then it will create a new Python environment in directory .espressif based on the new Python. The version of your Ubuntu is no longer supported and the included Pythons are very old. Here are a couple of more ideas you can try: - build in docker: https://docs....
by ESP_Roland
Fri Apr 17, 2020 6:55 am
Forum: ESP-IDF
Topic: idf.py menuconfig fail
Replies: 5
Views: 7883

Re: idf.py menuconfig fail

Hi iamkkk, I'm not sure about this issue as menuconfig usually is working well on Ubuntu. The proper TERM value for your terminal is probably "xterm-256color" but I think it should work with the default value as well. No additional packages are necessary on Ubuntu. You can try different styles and s...
by ESP_Roland
Thu Apr 16, 2020 2:04 pm
Forum: ESP-IDF
Topic: idf.py menuconfig fail
Replies: 5
Views: 7883

Re: idf.py menuconfig fail

Hi iamkkk,

What terminal and OS are you using? What is the value of the TERM enviroment variable? You can find it in the output, e.g.:

Code: Select all

TERM environment variable is set to "rxvt-unicode-256color"
by ESP_Roland
Sun Apr 12, 2020 6:27 pm
Forum: ESP-IDF
Topic: mconf failed to run
Replies: 2
Views: 4314

Re: mconf failed to run

Please note also that there is a newer version for the v4.0 you are using: https://github.com/espressif/esp-idf/bl ... .json#L274. It might fix your issue.
by ESP_Roland
Sun Apr 12, 2020 6:23 pm
Forum: ESP-IDF
Topic: mconf failed to run
Replies: 2
Views: 4314

Re: mconf failed to run

Hi LHKsaint,

are you able to run it manually, i.e.

Code: Select all

mconf-idf.exe -v
when you start up the command line or when you go to the directory where it is placed?
by ESP_Roland
Thu Apr 02, 2020 4:34 pm
Forum: ESP-IDF
Topic: FreeRTOS as a git module
Replies: 1
Views: 3014

Re: FreeRTOS as a git module

FreeRTOS of ESP-IDF is a modified version. You can read about the changes here:
https://docs.espressif.com/projects/esp ... s-smp.html
by ESP_Roland
Wed Apr 01, 2020 10:40 am
Forum: ESP-IDF
Topic: Where to costomize the menuconfig display
Replies: 1
Views: 2750

Re: Where to costomize the menuconfig display

Hi blueblueandy, The latest ESP-IDF uses a Python-based menuconfig (that you see on the first picture). Older versions use a C-based one (shown on the second one). Fixes for the C-based one are also included in newer version of ESP-IDF. So the solution is that esp-idf should be update in esp32_azure...
by ESP_Roland
Wed Apr 01, 2020 10:20 am
Forum: ESP-IDF
Topic: Python requirements are not satisfied at "make menuconfig"
Replies: 5
Views: 7965

Re: Python requirements are not satisfied at "make menuconfig"

Hello Hasan Shadi, You can download the MSYS environment from here https://docs.espressif.com/projects/esp-idf/en/latest/esp32/get-started-legacy/windows-setup.html#toolchain-setup which has all Python packages already installed. If you want to fix your existing environment then probably this should...
by ESP_Roland
Fri Mar 13, 2020 9:06 am
Forum: ESP-IDF
Topic: ESP-IDF 4.2 resetting WiFi SSID and PASSWORD set previously in menuconfig
Replies: 2
Views: 11366

Re: ESP-IDF 4.2 resetting WiFi SSID and PASSWORD set previously in menuconfig

Hi Martin,

you use "set-target" after menuconfig which invokes fullclean and cleans the project. If you want to change target then do it once in the beginning before running menuconfig. If your target is esp32 then you don't have to use it at all because that is the default target.

Roland